/* === HERO VIDEO – SANDI CHILD (mismo alto en TODAS las páginas) === */

.ta-banner-video {
    position: relative;
    width: 100%;
    height: 80vh !important;   /* mismo alto que en la home */
    min-height: 480px;
    max-height: 780px;
    overflow: hidden;
}

.ta-banner-video__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ta-hero-video {
    width: 100%;
    height: auto;        /* que tome su altura natural */
    min-height: 100%;    /* pero que siempre cubra el alto del contenedor */
    object-fit: cover;
}

.ta-banner-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ta-banner-video__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* contenido abajo, igual que en front page */
    align-items: center;
    text-align: center;
    padding: 30px 20px 40px;
}

@media (max-width: 992px) {
    .ta-banner-video {
        height: 70vh !important;
    }
}

@media (max-width: 768px) {
    .ta-banner-video {
        height: 60vh !important;
    }
}
