/* --------------------------------------- */
/* ----- Videos Page Layout ----- */
/* --------------------------------------- */

.videos-header {
    text-align: center;
    padding: 6rem 0 3rem 0;
}

.videos-header h1 {
    font-size: 5rem;
    color: var(--white);
}

.videos-header p {
    max-width: 700px;
    margin: 2rem auto;
    font-size: var(--font-size-normal);
}

/* --------------------------------------- */
/* ----- Video Grid ----- */
/* --------------------------------------- */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

/* Tablet */

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

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

/* --------------------------------------- */
/* ----- Video Cards ----- */
/* --------------------------------------- */

.video-card {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 6px;
}

.video-title {
    margin-top: 1rem;
    font-size: 1.8rem;
    color: var(--white);
}