/* ================= VIDEO PAGE STYLING ================= */

/* Container */
.video-container {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--primary-color);
    margin-bottom: auto;
}

.video-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Iframes */
.video-grid iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-grid iframe:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-title {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-grid iframe {
        height: 180px;
    }
}
