/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 1rem auto 2rem auto; 
    height: 0;
    padding-bottom: 56.25%; 
}

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

.project-description h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #614b4b;
    margin-bottom: 20px;
    margin-top: 20px;
}
/* Mobile Portrait & Landscape */
@media (max-width: 1024px) {
    .project-details {
        flex-direction: column; 
    }

    .project-description {
        order: 0;
    }

    .project-credits {
        order: 1; 
        margin-bottom: 1rem;
    }

    .project-description + .video-container,
    .video-container {
        order: 2; 
        max-width: 95vw;
        padding-bottom: calc(95vw * 9 / 16);
    }
}