/* Video-focused project page */
.project-page-video {
    min-height: 100vh;
    padding: 40px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-video-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.video-container-large {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}

.video-container-large iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.project-info-below {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-info-below h1 {
    margin-bottom: 20px;
}

.project-info-below p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-card {
    background-color: #0D1F3C;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.video-card .video-container-large {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
}

.video-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card-content h3 {
    font-size: 1.3rem;
    color: #3EC1E6;
    margin: 0 0 15px 0;
}

.video-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B0B0B0;
    margin: 0 0 10px 0;
}

.video-card-content p:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .project-page-video {
        padding: 20px 6%;
        align-items: flex-start;
    }

    .project-video-section {
        max-width: 100%;
        padding: 0;
    }

    .project-info-below h1 {
        font-size: 1.6rem;
    }

    .project-info-below p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 24px 0;
    }

    .video-card-content {
        padding: 14px;
    }

    .video-card-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .project-page-video { padding: 16px 4%; }
    .project-info-below h1 { font-size: 1.4rem; }
    .video-card-content p { font-size: 0.95rem; }
}
