/**
 * Scroll-driven Video Background Section
 *
 * Structure:
 *   .scroll-video-section   — outer Group block (position: relative, overflow: hidden)
 *     <video .scroll-video-bg>  — injected by Custom HTML block inside the Group
 *     .scroll-video-content — inner Group block holding editable blocks
 */

.scroll-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroll-video-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.scroll-video-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 10%;
}
