.news {
    position: relative;
    padding: 180px 140px;
    background: var(--white);
    z-index: 5;
    gap: 120px;
    box-sizing: border-box;
}
.news_list .box {
    position: sticky;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
    border-radius: 50px;
    overflow: hidden;
    box-sizing: border-box;
}
.news_list .box .h100 {
    height: 100%;
    text-transform: uppercase;
    padding: 85px 0 20px;
    gap: 60px;
    box-sizing: border-box;
}
.news_list .box .thumb {
    position: relative;
    width: 790px;
    height: 0;
    padding-bottom: 60vh;
    max-height: 770px;
    border-radius: 50px;
    overflow: hidden;
}
.news_list .box .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_list .box .txt {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 400px;
    max-height: 65vh;
    background: var(--white);
    padding: 30px 0;
    margin: -20px 0;
    box-sizing: border-box;
}
.news_list .box .txt:before {
    content: '';
    position: absolute;
    top: -60px;
    left: 210px;
    display: block;
    width: 20px;
    height: 20px;
    background: var(--point);
    animation: big 5s linear infinite;
}
.news_list .box .txt .title {
    position: relative;
    gap: 30px;
    line-height: 1.2;
    cursor: pointer;
}
.news_list .box .txt .title h3 {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news_list .box .txt .title .date {
    color: var(--text);
    font-size: 20px;
}
.news_list .box .txt .title .cont {
    font-size: 20px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.news_list .box .txt .btn_area {
    gap: 20px;
}
.news_list .box .txt .btn_area > div {
    flex: 1;
    z-index: 1;
}


.news .list {
    gap: 40px;
}
.news .list .item {
    position: relative;
    gap: 30px;
}
.news .list .item .thumb {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}
.news .list .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .list .item .txt {
    flex: 1;
    width: 100%;
    height: 200px;
    border-top: 1px solid rgba(0,0,0,0.5);
    justify-content: center;
    gap: 20px;
    font-family: 'SUIT';
}
.news .list .item .txt .date {
    color: var(--text);
    font-size: 20px;
    line-height: 1.2;
}
.news .list .item .txt .subject a {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news .list .item .square {
    position: relative;
    width: 20px;
    height: 200px;
    justify-content: center;
}
.news .list .item .square span {
    display: block;
    width: 20px;
    height: 20px;
    background: var(--point);
    animation: big 5s linear infinite;
}
@keyframes big {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}



.news.read .title {
    gap: 20px;
    line-height: 1.2;
}
.news.read .title h3 {
    font-size: 48px;
    font-weight: 500;
}
.news.read .title .date {
    color: var(--text);
    font-size: 20px;
}
.news.read .cont {
    font-size: 20px;
    line-height: 1.2;
}
.news.read .cont img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
}
.news.read .btn_box {
    gap: 10px;
}
.news.read .btn_box > div {
    min-width: 300px;
}
.news.read .btn_box a {
    max-width: 400px;
    font-size: 20px;
    line-height: 1.2;
}




@media screen and (max-width: 1600px) {
    .news {
        padding: 180px 100px;
    }

    .news_list .box .thumb {
        width: 580px;
    }
}
@media screen and (max-width: 1280px) {
    .news {
        padding: 180px 60px;
        gap: 80px;
    }

    .news_list .box .h100 {
        gap: 40px;
    }
    .news_list .box .thumb {
        width: 470px;
    }
    .news_list .box .txt .title h3 {
        font-size: 36px;
        line-height: 1.3;
    }
    .news_list .box .txt:before {
        left: 90px;
    }

    .news .list .item .txt .subject a {
        font-size: 26px;
    }

    .news.read .title h3 {
        font-size: 36px;
    }
}
@media screen and (max-width: 1024px) {
    .news {
        padding: 130px 20px;
        gap: 50px;
    }

    .news_list .box .thumb {
        width: 320px;
    }
    .news_list .box .txt .title h3 {
        font-size: 26px;
    }
    .news_list .box .txt .title .date {
        font-size: 16px;
    }
    .news_list .box .txt .title .cont {
        font-size: 16px;
    }
    .news_list .box .h100 {
        padding: 40px 0 20px;
    }
    .news_list .box .txt:before {
        width: 15px;
        height: 15px;
    }
    .news_list .box .txt:before {
        top: -15px;
        left: 50px;
    }

    .news .list {
        gap: 30px;
    }
    .news .list .item .thumb {
        width: 240px;
        height: 140px;
    }
    .news .list .item .txt,
    .news .list .item .square {
        height: 140px;
    }
    .news .list .item .txt .date {
        font-size: 16px;
    }
    .news .list .item .txt .subject a {
        font-size: 20px;
    }
    .news .list .item .square span {
        width: 15px;
        height: 15px;
    }

    .news.read .title h3 {
        font-size: 24px;
    }
    .news.read .title .date {
        font-size: 16px;
    }
    .news.read .cont {
        font-size: 16px;
    }
    .news.read .btn_box > div {
        min-width: 200px;
    }
    .news.read .btn_box a {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .news {
        padding: 130px 0;
    }
    .news h3.tit {
        padding: 0 30px;
        margin-bottom: 50px;
        box-sizing: border-box;
    }

    .news_list .box {
        top: 60px;
        background: var(--white);
        border-radius: 0;
    }
    .news_list .box .h100 {
        height: 85%;
        padding: 0px 0 20px;
        border-radius: 0;
    }
    .news_list .box .thumb {
        width: 100%;
        height: 220px;
        border-radius: 0;
        padding-bottom: 0;
        margin-bottom: 20px;
    }
    .news_list .box .txt {
        height: auto;
        min-height: auto;
        max-height: none;
        background: var(--white);
        padding: 0 20px;
        margin: 0;
        gap: 20px;
    }
    .news_list .box .txt:before {
        top: -35px;
    }

    .news .list {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .news .list .item {
        gap: 15px;
    }
    .news .list .item .thumb {
        width: 100%;
        height: auto;
        padding-bottom: 30%;
    }
    .news .list .item .txt {
        flex: none;
        height: auto;
        gap: 10px;
        border-top: 0;
        padding: 0 0 20px;
    }
    .news .list .item .txt .date {
        font-size: 14px;
    }
    .news .list .item .txt .subject a {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }
    .news .list .item .square {
        display: none;
    }

    .news.read {
        padding: 130px 15px;
        box-sizing: border-box;
    }
    .news.read h3.tit {
        padding: 0;
        margin-bottom: 0;
    }
    .news.read .cont {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    
}
@media screen and (max-width: 380px) {
}