
.project-page {
    padding: 60px 5%;
    background-color: white;
    font-size: 1.2rem;
    /* or dark blue if alternating */
}


.back-link {
    margin-bottom: 60px;
}

.back-link a {
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #0c1a2b;
    /* dark blue */
    transition: opacity 0.3s ease;
}

.back-link a:hover {
    opacity: 0.6;
}


.project-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.project_title h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: center;
}


.project-video {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.production-approach-title {
    margin-top: 40px;
    text-align: center;
    /* color: white; */
}
.production-approach-title h2 {
    font-size: 2rem;
    letter-spacing: 1px;
}

.process-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* Two-column layout */
.process-block {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.process-block.reverse {
    flex-direction: row-reverse;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
}

.process-text {
    flex: 1;
    line-height: 1.7;
}



@media (max-width: 768px) {
    .process-block {
        flex-direction: column;
        gap: 30px;
    }

    .process-block.reverse {
        flex-direction: column;
    }
}
