/* V3.3.4 — hero video: stable inline/mobile behavior */
.hero-slide .hero-media video[data-hero-video] {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
}

.hero-mobile-poster-fallback {
    display: none;
}

@media (max-width: 820px) {
    .hero-slide .hero-media video[data-hero-video] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        background: #0b2c4b;
    }

    .hero-slide.has-mobile-static-poster .hero-mobile-poster-fallback {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        z-index: 0;
    }

    .hero-slide.has-mobile-static-poster .hero-media video[data-hero-video] {
        display: none !important;
    }
}
