 /* 제작투자 하위 전주시네마프로젝트, 디지털 삼인삼색, 숏!숏!숏! 공통 CSS 파일 */
@media screen and (min-width:1024px) {
    .project-year-select{
        position: sticky;
        top: 50px;
        overflow: auto;
        transition: .15s all ease; 
    }
    .project-year-select .year-list{
        display: flex;
        flex-direction: column;
        position: static;
        width: 100%;
        padding:0;
        margin-left: 0;
        max-height: unset;
        overflow: unset;
    }
    .project-year-select .year-list li{
        transition:.3s all ease;
    }
    .project-year-select .year-list li.current{
        /* order:-1; */
    }
    .project-year-select .year-list li.current,
    .project-year-select .year-list li:hover{
        background-color: #FF4545;
        font-size: 40px;
        line-height: 50px; 
    }
    .project-breadcrumbs{
        gap:10px;
        width: calc(100% - 40px);
        margin-left:20px;
    }

    .project-breadcrumbs .depth1-title{
        min-width: 19.57%;
    }
 
 
    
    .project-year-select::-webkit-scrollbar{
        /* display: none; */
    } 

    /* media detail */
    .movie-detail .movie-detail-container .movie-info.overflow-y-auto {
        transition: .15s top ease;
    }
    /* .movie-detail .movie-detail-container .movie-info.overflow-y-auto, */
    body.state-floating .movie-detail .movie-detail-container .movie-info.overflow-y-auto {
        height:auto;
        max-height:100dvh;
    }
    body.scroll-up.state-floating .movie-detail .movie-detail-container .movie-info.overflow-y-auto {
        height:auto;
        top:var(--header-floating-height-pc);
        max-height: calc(100dvh  - var(--header-floating-height-pc));
    }
    body.unsticky-sidebar .movie-detail .movie-detail-container .movie-info.overflow-y-auto {
        /* max-height:9999em; */
    }
    
    /* year selector height */
    /* 50px: breadcrumbs height */
    body.state-floating .project-year-select{ max-height: calc(100dvh - 50px); }
    body.scroll-up .project-year-select {
        top:calc(var(--header-floating-height-pc) + 50px);
        max-height: calc(100dvh  - var(--header-floating-height-pc) - 50px);
    }


    /* resource detail */
    .resource-detail .resource-detail-container .resource-info {
        transition: .15s top ease;
    }
    .resource-detail .resource-detail-container .resource-info,
    body.state-pinned .resource-detail .resource-detail-container .resource-info {
        height:auto;
        max-height: calc(100dvh - var(--header-height-pc));
    }
    /* body.state-relased .resource-detail .resource-detail-container .resource-info */
    body.state-floating .resource-detail .resource-detail-container .resource-info {
        max-height:100dvh;
    }
    body.scroll-up.state-floating .resource-detail .resource-detail-container .resource-info {
        height:auto;
        top:var(--header-floating-height-pc);
        max-height: calc(100dvh  - var(--header-floating-height-pc));
    }

    /* organization */
    /* #organization .sticky-title{
        position: static;
    }
    #organization .sticky-title .left-title{
        position: sticky;
        top:0;
        transition: .1s top ease;
    }
    .scroll-up #organization .sticky-title .left-title{
        top:var(--header-floating-height-pc);
    } */
    /* //organization */

}