.video-banner {
    position: relative;
    padding: 0 2rem;

    @media (max-width: 767px) {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Slider wrapper
       ====================================================================== */

    & .video-banner__slider {
        position: relative;
    }

    /* Individual slide (stage + content block stacked)
       ====================================================================== */

    & .video-banner__slide {
        display: none;

        &.is-active {
            display: block;
        }
    }

    /* Stage (video / image background area)
       ====================================================================== */

    & .video-banner__stage {
        position: relative;
        min-height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: var(--color-tan);
        background-size: cover;
        background-position: center;
        border-radius: 0 0 25px 25px;

        @media (max-width: 767px) {
            align-items: flex-end;
        }
    }

    & .video-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    /* iframe scales to cover the stage like object-fit: cover
       ====================================================================== */

    & .video-banner__video-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;

        & .video-banner__iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw; /* 16:9 */
            min-height: 100%;
            min-width: 177.78vh; /* 16:9 inverted */
            transform: translate(-50%, -50%);
            border: none;
        }
    }

    & .video-banner__stage-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 4rem 2rem;
        text-align: center;
        max-width: 860px;
        margin: 0 auto;

        @media (max-width: 767px) {
            padding-top: 2rem;
            padding-bottom: 5rem;
        }
    }

    & .video-banner__title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        color: var(--color-white);
        margin: 0;
        line-height: 1.15;
    }

    /* Content block (below the stage)
       ====================================================================== */

    & .video-banner__content {
        padding: 0 2rem 4rem;
    }

    & .video-banner__content-inner {
        max-width: 675px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12.5px);
        -webkit-backdrop-filter: blur(12.5px);
        padding: 2.5rem 3rem;
        margin-top: -3rem;
        position: relative;
        z-index: 2;

        @media (max-width: 767px) {
            padding: 1.5rem;
        }
    }

    & .video-banner__subhead {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--color-gold);
        margin: 0 auto;
        text-align: center;
        max-width: 560px;
    }

    & .video-banner__headline {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        color: var(--color-navy);
        margin: 0 auto;
        line-height: 1.2;
        text-align: center;

        @media (min-width: 768px) {
            max-width: 560px;
        }
    }

    & .video-banner__copy {
        font-size: 1rem;
        line-height: 1.75;
        color: #444;
        max-width: 780px;
        text-align: center;

        & p:first-child { margin-top: 0; }
        & p:last-child  { margin-bottom: 0; }
    }

    /* Progress dots (outside the slider, below all slides)
       ====================================================================== */

    & .video-banner__dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 1.5rem 2rem;
        background-color: var(--color-white);
    }

    & .video-banner__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background-color: #ccc;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.2s ease, transform 0.2s ease;

        &.is-active {
            background-color: var(--color-navy);
            transform: scale(1.3);
        }

        &:focus-visible {
            outline: 3px solid var(--color-gold);
            outline-offset: 3px;
        }
    }

    & .video-banner__cta:hover {
        background-color: var(--color-white);
        border-color: var(--color-white);
        color: var(--color-gold);
    }
}