.news_wrap {
    margin-top: 140px;
}

.news_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news_list .list_item {
    display: flex;
    width: calc((100% - 20px) / 2);
    border: 1px solid #E1E1E1;
}

.news_list .img_wrap {
    display: block;
    width: 36%;
    aspect-ratio: 1/0.63;
    background-color: #E1E1E1;
}

.news_list .img_wrap img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.news_list .text_wrap {
    display: flex;
    align-items: center;
    width: 64%;
    padding: 0 24px;
}

.news_list .title {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.empty_wrap {
    width: 100%;
}

@media screen and (max-width:1023px) {
    .news_wrap {
        margin-top: 50px;
    }
}

@media screen and (max-width:767px) {
    .news_list .list_item {
        width: 100%;
    }
}