/* Vimeo iframe fixes for proper video display */

.video-demos-section .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    pointer-events: auto;
}

.video-demos-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    pointer-events: auto;
}

/* Ensure video cards have proper structure */
.video-demos-section .video-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Remove any conflicting video element styles */
.video-demos-section .video-container video {
    display: none;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .video-demos-section .video-container {
        padding-bottom: 56.25%;
        margin-bottom: 15px;
    }
}
