/* Videos page */
.page-videos .nav-menu .nav-link[href="videos.html"] {
    color: var(--primary-purple, #8E3090);
}

.videos-hero-bg {
    background-image: url('images/slide3.png');
}

.videos-section {
    padding: 80px 0 100px;
 
 
}

.videos-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.videos-section-header .section-subtitle {
    color: var(--primary-purple, #8E3090);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.video-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .videos-section {
        padding: 60px 0 80px;
    }
}

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