/* Video skeleton loader animation */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.video-container-hero {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.video-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e6;
    box-shadow: none;
    outline: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-hero.loaded {
    opacity: 1;
}

/* Add bottom margin to video container on desktop */
@media (min-width: 992px) {
    .video-container-hero {
        margin-bottom: 2rem;
    }
    
    /* Align landing page video with h1 headline */
    .video-container-hero-landing {
        margin-top: 3.5rem;
        margin-bottom: 2rem;
    }
}

