.news_content{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.news_archive{
    width: 27rem;
    flex-shrink: 0;
    position: sticky;
    top: 14rem;
}

.news_archive h2{
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 1.5rem;
    border-bottom: solid 0.105rem #E4E4E4;
}

.news_archive_list{
    display: flex;
    flex-flow: column;
}

.news_archive_item{
    padding: 1.5rem 0;
    border-bottom: solid 0.105rem #E4E4E4;
    transition: 0.3s;
}

.news_inner{
    width: 65rem;
    flex-shrink: 0;
}

.news_date{
    color: var(--mainColor);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.news_title{
    font-size: 3.2rem;
    font-weight: 500;
}

.news_img{
    width: 100%;
    margin: 4rem 0;
}

.news_img img{
    border-radius: 0.5rem;
}

.news_text{
    display: flex;
    flex-flow: column;
    gap: 2rem;
}

.news_text img{
    width: 100%;
}

.news_inner .arrow_round{
    background: var(--mainColor);
    border: solid var(--mainColor) 0.105rem;
}

.news_inner .arrow_round::before{
    border-top: 0.15rem solid #fff;
    border-right: 0.15rem solid #fff;
}

.news_inner .arrow_round::after{
    background: #fff;
}

.news_inner a:has(.arrow_round):hover .arrow_round::before {
    border-top: 0.15rem solid var(--mainColor);
    border-right: 0.15rem solid var(--mainColor);
}

.news_inner a:has(.arrow_round):hover .arrow_round::after {
    background: var(--mainColor);
}

.news_back{
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 6rem;
    margin-left: auto;
}


@media (max-width: 767px) {
    .news_content{
        flex-flow: column-reverse;
        gap: 4rem;
    }

    .news_archive{
        width: 100%;
    }

    .news_inner{
        width: 100%;
    }

    .news_title{
        font-size: 2rem;
    }

    .news_img{
        margin: 2rem 0;
    }

    .news_back{
        margin-top: 4rem;
    }
}