.news {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8rem;
    padding: 6rem 6rem 0;
    overflow: hidden;

    background-color: #EDF4F6;
}



.news_leftBx {
    transition: .8s;
    transform: translateX(-100px);
    opacity: 0;
}
.news.appear .news_leftBx {
    transform: none;
    opacity: 1;
}



.news_rightBx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 70rem;

    transition: .8s;
    transform: translateX(-100px);
    opacity: 0;
}
.news.appear .news_rightBx {
    transform: none;
    opacity: 1;
}
.news_rightBx-list {
    width: 45%;
    margin-bottom: 6rem;
}
.news_rightBx-list a {
    display: flex;
    gap: 2rem;
    color: #1E222C;
}
.news_rightBx-list img {
    width: 11rem;
    height: 11rem;
    object-fit: cover;
}
.news_rightBx-list-txt time {
    font-size: 1.4rem;
}
.news_rightBx-list-txt h3 {
    padding-top: 1rem;
}





@media screen and (max-width: 800px) {
    .news_rightBx {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 90%;
    }
    .news_rightBx-list {
        width: 100%;
        margin-bottom: 5rem;
    } 
}





@media screen and (max-width: 500px) {
    .news {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8rem;
        padding: 3rem 3rem 0;
        background-color: #EDF4F6;
    }
}
