/* --- Video Gallery Page Styles --- */

.video-gallery-page {
    background-color: #f9f9f9;
}

/* Hero Section */
.video-gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.video-gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 78, 0.6); /* Dark overlay */
}

.video-gallery-hero-content {
    position: relative;
    z-index: 1;
}

.video-gallery-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-gallery-hero-content .breadcrumbs-area {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.video-gallery-hero-content #breadcrumbs {
    justify-content: center;
}

.video-gallery-hero-content #breadcrumbs li a {
    color: #fff;
    text-decoration: none;
}

.video-gallery-hero-content #breadcrumbs li .separator {
    color: rgba(255,255,255,0.6);
    margin: 0 5px;
}

.video-gallery-hero-content #breadcrumbs li:last-child {
    color: #fff;
}

/* Video Gallery Content */
.video-gallery-content {
    padding: 80px 0;
}

.video-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.video-card {
    flex: 1 1 300px;
    max-width: 45%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    min-width: 300px;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .video-gallery-hero h1 {
        font-size: 32px;
    }
    .video-card {
        max-width: 100%;
    }
}