.news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news_list+.news_list {
    margin-top: 30px;
}

.news_list_item {
    padding: 24px;
    background: #f6f6f6;
}

.news_list_image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news_list_content {
    padding-top: 20px;
}

.news_list_content p {
    margin-bottom: 0;
}

.news_list_content span {
    color: #c51230;
    font-weight: 400;
}

.news_list_content h4 {
    font-weight: 600;
    margin: 10px 0 20px 0;
    line-height: 1.3;
}

.news_list_content h4 a:not(:hover) {
    color: #323232;
}

.news_list_item:hover h4 a {
    color: #c51230;
}

@media screen and (max-width: 999px) {
    .news_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .news_list_image img {
        height: 130px;
    }

    .news_list_item {
        padding: 14px;
    }
}

@media screen and (max-width: 767px) {
    .news_list {
        grid-template-columns: repeat(1, 1fr);
    }



    .news_list_image img {
        height: 180px;
    }
}