/**
 * Call To Action - Alternate
 * Figma: k6URVVKeD5A6LMCfMNunSE node 2001:1275
 * Frame: 1366 x 363, padding 55px 118px 72px
 * BG: #607470, floral overlay at 2% opacity
 * Title: PP Hatton Ultralight 45px / tracking 0.9px / #fff5eb / 600px
 * Subtitle: Gesta Regular 15px / #fff5eb / 636px
 * Button: bg #fff5eb, text #006d8f, Gesta Medium 14px / tracking 0.266px,
 *         line-height 25px, capitalize, padding 11px 20px, 11px gap, 14x11 arrow
 * Stack gap title->subtitle: 10px; text block -> button: 25px
 */

.cta-alt {
    position: relative;
    width: 100%;
    background: #607470;
    padding: 55px 118px 72px;
    overflow: hidden;
    box-sizing: border-box;
}

.cta-alt__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-alt__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.02;
    display: block;
}

.cta-alt__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.cta-alt__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff5eb;
}

.cta-alt__title {
    font-family: 'PP Hatton', 'PP_Hatton', serif;
    font-weight: 200; /* Ultralight */
    font-style: normal;
    font-size: 45px;
    line-height: normal;
    letter-spacing: 0.9px;
    color: #fff5eb;
    text-align: center;
    width: 600px;
    max-width: 100%;
    margin: 0;
}

.cta-alt__subtitle {
    font-family: 'Gesta', sans-serif;
    font-weight: 400; /* Regular */
    font-style: normal;
    font-size: 15px;
    line-height: normal;
    color: #fff5eb;
    text-align: center;
    width: 636px;
    max-width: 100%;
    margin: 0;
}

.cta-alt__button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #fff5eb;
    color: #006d8f;
    padding: 11px 20px;
    font-family: 'Gesta', sans-serif;
    font-weight: 500; /* Medium */
    font-style: normal;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.266px;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-alt__button:hover,
.cta-alt__button:focus {
    background: #ffffff;
    color: #006d8f;
    text-decoration: none;
}

.cta-alt__button-label {
    display: inline-block;
}

.cta-alt__button-icon {
    width: 14px;
    height: 11px;
    flex-shrink: 0;
    display: block;
    color: #006d8f;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-alt {
        padding: 48px 40px 56px;
    }
    .cta-alt__title {
        font-size: 36px;
        letter-spacing: 0.72px;
    }
}

@media (max-width: 575px) {
    .cta-alt {
        padding: 40px 20px 48px;
    }
    .cta-alt__title {
        font-size: 28px;
        letter-spacing: 0.56px;
    }
    .cta-alt__subtitle {
        font-size: 14px;
    }
}
