/* Styles pour le frontend */
.wp-block-cover.has-video-background {
    position: relative;
    overflow: hidden;
}

.wp-block-cover.has-video-background .cover-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.wp-block-cover.has-video-background .cover-video-background iframe, 
.wp-block-cover.has-video-background .cover-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Fix pour les ratios d'aspect */
@media (min-aspect-ratio: 16/9) {
    .wp-block-cover.has-video-background .cover-video-background iframe,
    .wp-block-cover.has-video-background .cover-video-background video {
        height: 56.25vw; /* 100 * 9/16 */
    }
}

@media (max-aspect-ratio: 16/9) {
    .wp-block-cover.has-video-background .cover-video-background iframe,
    .wp-block-cover.has-video-background .cover-video-background video {
        width: 177.78vh; /* 100 * 16/9 */
    }
}