/* 미디어 하위 뉴스, 사진 , 영상, 자료집 페이지에 사용 */ 
#photo-detail .subject-list .subject a{
    transition: .3s background-color ease;
}
#photo-detail .subject-list .subject a:hover{
    background-color: #FF4545;
}
#photo-detail .media-title .track {
  display: inline-flex;
  gap: 10px;
  will-change: transform;
  animation: marquee linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
 #photo-detail .go-back-list-wrap{
    position: sticky;
    top:0;
    transition: .3s top ease;
 }
 body.scroll-up #photo-detail .go-back-list-wrap{
    top:var(--header-height-m);
 }
 #photo-detail .subject-list .subject.current{
    order:-1;
    background-color: #FF4545;
 }
 #photo-detail .left-wrap{
    position: sticky;
    top:0;
    transition: .3s top ease;
 }
 body.scroll-up #photo-detail .left-wrap{
    top:var(--header-height-m);
 } 

 #news-detail-page .ndp-content p{
   padding-bottom: 10px;
 }