#page_news_news .category-menu{
    display: none!important;
}

#page_news_news .container.news-list .box{
    width: 100%;
}
#page_news_news .container.news-list .news-list{
    display: flex;
    flex-direction: column;
    gap: 100px;
}
#page_news_news .container.news-list .news-list .news-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2em;
    cursor: pointer;
}

#page_news_news .container .news-list .news-item .col{
    width: 100%;
}
#page_news_news .container .news-list .news-item .col.c1{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1em;
}
#page_news_news .container .news-list .news-item .col.c2{
    min-width: 250px;
    max-width: 250px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.5 / 1;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

#page_news_news .container .news-list .news-item .col.c1 .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    font-weight: 600;
    transition: color 0.3s ease;
}

#page_news_news .container .news-list .news-item .col.c1 .sub-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    font-weight: 400;
}
#page_news_news .container .news-list .news-item .col.c1 .regdate{
    color: #aaa;
}
#page_news_news .container .news-list .news-item .col.c2 .img-thumbnail{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

#page_news_news .btn-move-list{
    margin: 100px auto 0 auto;
    padding: 4px 10px;
    border-radius: 10px;
    background: #1a1a1a;
}




/** S : 해상도 분기 - 1 :: 기기의 가로 기준 해상도 */

/* 모바일 + 태블릿 */
@media (max-width: 1199px){
}

/* 모바일 - 저해상도, 구형 스마트폰 */
@media (max-width: 359px){
}

/* 모바일 - 일반 */
@media (min-width: 360px) and (max-width: 767px){

}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1199px){
}

/* PC - 일반 (기본 베이스) */
@media (min-width: 1200px) {
}

/* PC - 2k (qhd 기준 2560px * 1440px) */
@media (min-width: 2400px) {
}

/* PC - 4k (uhd 기준 3840px * 2160px)*/
@media (min-width: 3000px) {
}

/** E : 해상도 분기 - 1 :: 기기의 가로 기준 해상도 */


/** S : 해상도 분기 - 2 :: 기기의 가로/세로 해상도, 화면 방향 기준 */

/* 모바일 + 태블릿 */
@media (max-width: 1199px), (orientation: portrait), (min-width: 3841px), (min-height: 2161px) { 


    
}

/* 모바일 - 일반 (기본 베이스) */
@media (min-width: 1px) and (max-width: 767px) {

    #page_news_news .container.news-list .news-list{
        gap: 55px;
    }
    #page_news_news .container.news-list .news-list .news-item{
        gap: 1.4em;
    }
    
    #page_news_news .container .news-list .news-item .col.c1{
        gap: 0.6em;
    }
    #page_news_news .container .news-list .news-item .col.c1 .title{
        -webkit-line-clamp: 2;
    }
    #page_news_news .container .news-list .news-item .col.c2{
        min-width: 135px;
        max-width: 135px;
    }
    

}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1199px), (min-width: 768px) and (orientation: portrait), (min-width: 3841px), (min-height: 2161px) { 


  
}

/* PC - 일반 (기본 베이스) */
@media (min-width: 1200px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {

    #page_news_news .container .news-list .news-item:hover .col.c2{
        transform: translateY(-10px);
        box-shadow: rgba(0, 0, 33, 0.04) 0px 16px 22.4px 4.8px, rgba(0, 0, 33, 0.02) 0px 3.2px 16px 0px, rgba(0, 0, 33, 0.04) 0px 0px 1px 0px;
        transition: all 0.3s ease;
    }
    #page_news_news .container .news-list .news-item:hover .col.c1 .title{
        color: #00d4c5;
        transition: color 0.3s ease;
    }

    
}

/* PC - 2k (qhd 기준 2560px * 1440px) */
@media (min-width: 2400px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {
}

/* PC - 4k (uhd 기준 3840px * 2160px)*/
@media (min-width: 3000px) and (orientation: landscape) and (max-width: 3840px) and (max-height: 2160px) {
}