:root {
    --content-max-width: 600px;
    --content-side-padding: 24px;
}

.banner {
    position: relative;
    isolation: isolate;
    background: var(--blue);
    color: var(--white);
    min-height: 240px;
    overflow: hidden;
}

/* Video de fondo */
.banner__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 50%;
    display: block;
}

/* Contenido */
.banner__content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 240px;
    padding-block: 24px;
}

.banner__container {
    width: 85%;
    max-width: var(--content-max-width);
    padding-inline: var(--content-side-padding);
}

/* Tipos (solo tamaños básicos) */
.banner__eyebrow {
    margin: 0 0 8px;
    font-size: 3rem;
    line-height: 1;
    font-family: var(--guthen);
}

.banner__title {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 700;
}

.banner__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* CTA opcional */
.banner__cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 16px;
    background: #ffffff;
    color: #0068a8;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsivo */
@media (min-width: 768px) {
    :root {
        --banner-height: 280px;
    }

    .banner__video {
        object-position: right;
    }

    .banner__container {
        width: 100%;
    }

    .banner__title {
        font-size: 1.35rem;
    }

    .banner__eyebrow {
        font-size: 4rem;
    }

    .banner__subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --banner-height: 320px;
    }

    .banner__title {
        font-size: 1.7rem;
    }

    .banner__eyebrow {
        font-size: 4.8rem;
    }
}

@media (min-width: 1200px) {
    .banner__content {
        margin-left: 7%;
    }
}

@media (min-width: 1500px) {
    .banner__content {
        margin-left: 9%;
    }
}