/* 미디어 하위 뉴스, 사진 , 영상, 자료집 페이지에 사용 */
@media screen and (min-width:1024px) {
    #photo-detail .left-wrap{
        position: static;
    }
body.scroll-up #photo-detail .go-back-list-wrap{
     top:calc(var(--header-floating-height-pc));
 }
 #photo-detail .subject-list{
    overflow: auto;
    max-height: calc(100dvh - 52px);
    transition: .15s max-height ease;
 }
 body.scroll-up #photo-detail .subject-list{
    max-height: calc(100dvh  - var(--header-floating-height-pc));
 }

 #news-detail-page .left-title{
    position: sticky;
    top:0;
    transition: .3s top ease;
 }
 body.scroll-up #news-detail-page .left-title{
    top:calc(var(--header-floating-height-pc));
 }

 
}