/* BLOCK: Scroll Video */

.block-scroll-video {
    width: 100%;
    height: 300vh;
    height: 300svh;
    position: relative;
    overflow: clip;
}

.block-scroll-video canvas {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    min-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    transform: translateX(calc(-50% + 50vw));
}