/* ============================================================
   Banner background video + blur overlay
   ============================================================ */

/* Clip the slide so that video doesn't bleed outside */
.swiper-slide.has-bg-video {
    overflow: hidden;
}

/* Full-cover background video */
.banner-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Semi-transparent blurred overlay */
.banner-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

/* Content layer sits above video and blur */
.banner-bg-video-content {
    position: relative;
    z-index: 2;
}
