#news {
    padding: 3rem 20rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#news .list {
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#news .list .news-item {
    width: 100%;
    height: 20rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

#news .list .news-item~.news-item {
    margin-top: 2rem;
}

#news .list .news-item .img {
    width: 28rem;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#news .list .news-item .info {
    width: 62%;
    height: 100%;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#news .list .news-item .info .info-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #707070;
}

#news .list .news-item .info .info-item~.info-item {
    margin-top: 4rem;
}

#news .list .news-item .info .info-item .info-text {
    font-size: 1.5rem;
}

#news .list .news-item .info .info-item .info-bold {
    font-weight: bold;
}

#news .list .news-item .info .info-item .arrow {
    width: 1.5rem;
    height: 1rem;
}

#news .list .news-item .info .info-item .arrow img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    #news {
        padding: 1rem 1rem;
    }

    #news .list {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    #news .list .news-item {
        height: 100%;
        flex-direction: column;
    }

    #news .list .news-item~.news-item {
        margin-top: 1rem;
    }

    #news .list .news-item .img {
        width: 21rem;
        height: 13rem;
        background-size: cover;
    }

    #news .list .news-item .info {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }

    #news .list .news-item .info .info-item {
        flex-direction: column;
    }

    #news .list .news-item .info .info-item~.info-item {
        margin-top: 0;
    }

    #news .list .news-item .info .info-item .info-text {
        font-size: 1.2rem;
    }

    #news .list .news-item .info .info-item .desc {
        font-size: 1rem;
    }

    #news .list .news-item .info .info-item .arrow {
        align-self: flex-end;
    }

}
