/* Responsive Video Container */
.video-adaptive {
    max-width: 100%;
    height: auto;
    max-height: 85vh; /* Default for mobile/sm */
}

@media (min-width: 768px) { /* md */
    .video-adaptive {
        max-height: 75vh;
    }
}

@media (min-width: 1200px) { /* xl */
    .video-adaptive {
        max-height: 70vh;
    }
}
