﻿.bg-video-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 9, 13, 0.75) 0%, rgba(2, 9, 13, 0) 100%);
    height: 400px;
    pointer-events: none;
}

.embed-container {
    --video--width: 640;
    --video--height: 360;
    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    overflow: hidden;
    max-width: 100%;
    background: black;
}

    .embed-container .golfnz-video-desktop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .embed-container .golfnz-video-mobile {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 100vh;
        min-width: 177.78vh; /* 16:9 aspect ratio */
        transform: translate(-50%, -50%);
    }

/* Custom responsive display classes for golfnz-bg-video */
.golfnz-video-desktop {
    display: block;
}

.golfnz-video-mobile {
    display: none;
}

/* Media query for mobile devices (screen width less than 768px) */
@media (max-width: 768px) {
    /* Show mobile video when present */
    .golfnz-video-mobile {
        display: block;
    }

    /* Hide desktop video on mobile when mobile video is present */
    .golfnz-video-desktop {
        display: none;
    }

    .embed-container--mobile {
        padding-bottom: 100vh !important;
    }
}