/* --- Highlighted Video + Text Section --- */
.section-highlighted-video-text {
    position: relative;
    overflow: hidden;
}

.section-background-image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.video-wrapper-frame {
    max-width: 424px;
    position: relative;
    overflow: hidden;
}

.video-wrapper-frame img {
    width: 100%;
    height: auto;
}

.video-wrapper-frame .video-iframe,
.video-wrapper-frame video {
    position: absolute;
    top: 13px;
    left: 0;
    width: 91%;
    height: 97%;
    display: block;
    object-fit: cover;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 42px;
}

.video-text-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.video-column {
    flex: 0 0 430px;
    max-width: 430px;
}

.text-column {
    flex: 1;
    max-width: 700px;
    color: #0A0D4F;
}

.section-highlighted-video-text .section-title {
    font-family: 'Franklin Gothic Heavy', sans-serif;
    font-size: clamp(1.8125rem, -0.2589rem + 4.3155vw, 3.625rem);
    line-height: 1.1;
    color: #0A0D4F;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    max-width: 640px;
}

section.section-highlighted-video-text:after {
    content: '';
    background: #0A0D4F;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: -1;
    width: 100%;
    height: 50%;
}

.section-text.wysiwyg-content strong {
    color: #0A0D4F;
    font-size: clamp(1.125rem, 0.4821rem + 1.3393vw, 1.6875rem);
    font-family: 'Franklin Gothic Heavy';
}

.section-highlighted-video-text .section-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #231F20;
    margin-bottom: 30px;
}

.section-highlighted-video-text .cta-highlight {
    font-family: 'Franklin Gothic Heavy', sans-serif;
    /* Fallback for Demi */
    font-size: 27px;
    line-height: 1.2;
    color: #0A0D4F;
}

.section-highlighted-video-text .cta-highlight span.pink-underline {
    color: #ED1263;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


@media (max-width: 1200px) {
    .video-text-row {
        gap: 40px;
    }

    .video-column {
        flex: 0 0 350px;
    }
}

@media (max-width: 991px) {
    .video-text-row {
        flex-direction: column;
        text-align: center;
    }

    .video-column {
        flex: 0 0 auto;
        width: 300px;
        margin: 0 auto;
    }

    .text-column {
        max-width: 100%;
    }
}