/* Ensoul Lazy Video — reserve the box and fade the first frame in.
   The .ens-lazy-video class is added by ens-lazy-video.js only to videos
   it actually manages (opt-out / depth-parallax videos never get it). */

video.ens-lazy-video {
	opacity: 0;
	transition: opacity var(--ens-lazy-fade, 0.5s) ease;
}

video.ens-lazy-video.is-ready {
	opacity: 1;
}

@media ( prefers-reduced-motion: reduce ) {
	video.ens-lazy-video {
		transition: none;
	}
}
