.video-gallery-container {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.video-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.video-caption {
    padding: 20px;
    background: #fff;
}

.video-caption h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.video-caption p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-item {
        margin-bottom: 20px;
    }
    
    .video-caption {
        padding: 15px;
    }
    
    .video-caption h3 {
        font-size: 1.1rem;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
} 