/* Header */

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12vh 0 12vh 0;
    height: calc(100vh - 24vh);
}

    .header
    .header_title-card {
        width: min-content;
        position: relative;
        z-index: 2;
    }

        .header
        .header_title-card_title {
            width: max-content;
            text-align: center;
        }

        .header
        .header_title-card_subtitle {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

    .header
    .header_credits {
        display: flex;
        flex-direction: column;
        margin-top: 144px;
        align-items: center;
        gap: 6px;
        z-index: 2;
        color: var(--light-grey);
    }

        .header
        .header_credits_work {
            display: flex;
            flex-direction: row;
            gap: 3px;
            justify-content: center;
            align-items: flex-end;
        }

            .header_credit {
                display: flex;
                align-items: flex-end;
                gap: 3px;
            }
        
        .header
        .header_credits_label {
            display: flex;
            flex-direction: row;
            gap: 24px;
            justify-content: center;
            align-items: center;
            margin-top: 48px;
        }

    .header
    .header_background {
        user-select: none;
        overflow: hidden;
        z-index: -1;
        width: 100%;
        min-width: 1400px;
        position: absolute;
    }

        .header
        .header_background_image {
            width: 100%;
            transform-origin: 50% 115%;
            transform: scale(1.1);
            opacity: 72%;
        }

        .header
        .header_background_transition {
            background: linear-gradient(180deg, rgba(17, 22, 28, 0) 0%, var(--black) 100%);
            width: 100%;
            height: 240px;
            position: absolute;
            margin: 0 auto;
            bottom: 0;
        }






/* About */

.about {
    display: flex;
    flex-direction: column;
    margin: 0 auto 180px auto;
    align-items: center;
}

    .about
    .about_info {
        color: var(--light-grey);
        text-align: left;
    }






/* Project */

.project {
    display: flex;
    flex-direction: column;
    width: 93vw;
    margin: 240px auto;
}

    .project
    .project_header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        color: var(--dark-grey);
        padding-top: 12px;
        margin-bottom: 72px;
        width: 100%;
    }

        .project
        .project_title {
            display: flex;
            align-items: flex-start;
            margin-right: 36px;
            width: 100%;
            max-width: 360px;
        }

            .project
            .project_number {
                margin-right: 6px;
            }

            .project
            .icon {
                width: 5px;
                margin-right: 12px;
            }

    .project
    .project_title-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .project
        .project_title-card_network {
            width: max-content;
            margin-bottom: 24px;
        }

        .project
        .project_title-card_title {
            width: auto;
            text-align: left;
        }

    .project
    .project_synopsis {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        color: var(--light-grey);
        text-align: left;
        margin-bottom: 72px;
        width: calc(100% / 3 * 2);
    }

    .project
    .project_posters {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        border: 1px solid var(--dark-grey);
    }

        .project_tch
        .project_posters {
            flex-direction: row-reverse;
        }

        .project
        .project_posters_sub {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .project
        .poster {
            width: 100%;
        }

        .project
        .poster_scale-small {
            transform: scale(0.6);
        }

        .project
        .poster_scale-large {
            transform: scale(0.8);
        }




/* Footer */

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 93vw;
    margin: 240px auto;
}

    .footer
    .layout_inner {
        gap: 12px;
    }






/* Responsive */

@media
(max-width: 1140px) {

    .about
    .about_info {
        max-width: none;
        min-width: auto;
    }

    .project {
        margin: 120px auto;
    }

    .project
    .project_title-card_title {
        width: 100%;
    }

    .project
    .project_posters {
        flex-direction: column;
    }

    .project
    .project_posters_sub {
        margin-top: 0;
    }

}

@media
(max-width: 780px) {
    
    .header
    .header_title-card_title {
        width: min-content;
        font-size: 36vw;
    }

    .header {
        margin: 0 auto 72px auto;
        min-height: auto;
    }

    .about,
    .project {
        margin: 72px auto;
        gap: 12px;
    }

    .project
    .project_header {
        flex-direction: column;
        gap: 12px;
    }

    .project
    .project_title,
    .project
    .project_about {
        width: 100%;
    }

    .project
    .project_title-card {
        margin-bottom: 36px;
    }

    .project
    .project_synopsis {
        width: 100%;
        max-width: none;
        min-width: auto;
    }

    .project
    .project_posters {
        gap: 6px;
    }

    .project
    .project_posters_sub {
        gap: 6px;
    }

}