.hero-carousel-info-button {
    position: relative;
}

/* MAIN BUTTON */
.hero-carousel-info-button__link {
    display: block;
    background: #fff;
    padding: 16px 24px;
    text-decoration: none;
    color: #282828;
    position: relative;
}

.hero-carousel-info-button__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-carousel-info-button__title {
    font-size: 29px;
    transition: color .2s ease;
}

.hero-carousel-info-button__icon {
    display: flex;
    transition: color .2s ease;
}

.hero-carousel-info-button__link:hover {
    color: #E62038;
    text-decoration: none;
}

/* HOVER DESCRIPTION (DESKTOP) */
.hero-carousel-info-button__hover {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    background: #fff;
    padding: 16px 24px 0 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.hero-carousel-info-button__hover p {
    font-size: 17px;
    color: #6D6D6D;
    margin: 0;
}

.hero-carousel-info-button__link:hover .hero-carousel-info-button__hover {
    opacity: 1;
    pointer-events: auto;
}

/* MOBILE OVERLAY */
.hero-carousel-info-button__overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: none;
  overflow: auto;
}

.hero-carousel-info-button__overlay.is-open { display: block; }

html.hcib-overlay-open,
html.hcib-overlay-open body {
  overflow: hidden;
}

.hero-carousel-info-button__overlay-inner {
    padding: 36px 24px;
    position: relative;
}

.hero-carousel-info-button__overlay h3 {
    font-size: 29px;
    margin-bottom: 24px;
}

.hero-carousel-info-button__overlay p {
    font-size: 17px;
    color: #6D6D6D;
    margin-bottom: 24px;
}

.hero-carousel-info-button__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 0;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 781px) {
    .hero-carousel-info-button__hover {
        display: none;
    }

    .hero-carousel-info-button__title {
        font-size: 20px;
    }
}
