/**
 * Video Cover Block Fixes
 * Centers video properly within the visible hero section
 */

/* Force video to center properly - override all WordPress defaults */
.wp-block-cover video.wp-block-cover__video-background,
.wp-block-cover .wp-block-cover__video-background {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
   /* width: auto !important;
    height: auto !important;*/
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

/* Ensure the cover block itself is positioned correctly */
.wp-block-cover {
    position: relative !important;
    overflow: hidden !important;
}
