/* ===== VIDEO PLAYER ===== */
.video-section {
    padding: 4rem 0;
    background: #0d0a08;
}

.video-section .section-title {
    margin-bottom: 2rem;
}

/* ===== FEATURED VIDEO ===== */
.featured-video {
    margin-bottom: 2.5rem;
}

.featured-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    background: #0d0a08;
}

.featured-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video .video-info {
    padding: 1.25rem 0 0;
}

.featured-video .video-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.featured-video .video-info p {
    font-size: 0.9rem;
    color: #8a7a6a;
}

/* ===== VIDEO GRID ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #1a1410;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 197, 181, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 122, 94, 0.15);
}

.video-card .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #0d0a08;
}

.video-card .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card .video-info {
    padding: 1.25rem;
}

.video-card .video-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.video-card .video-info p {
    font-size: 0.85rem;
    color: #8a7a6a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .featured-video .video-info h4 {
        font-size: 1rem;
    }

    .featured-video .video-info p {
        font-size: 0.85rem;
    }

    .video-card .video-info {
        padding: 0.75rem;
    }

    .video-card .video-info h4 {
        font-size: 0.85rem;
    }

    .video-card .video-info p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}