.header {
    position: static;
    margin-bottom: 16px;
}

.news .container, .news_page .container {
    margin: 0 auto 84px;
}

.news .container {
    padding: 0;
}

.news .h2 {
    margin-bottom: 40px;
}

.all_news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 60px;
}

.news_item_picture {
    width: 100%;
    height: 400px;
}

.news_item_picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news_date {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #7d7d7d;
}

.news_item .news_date {
    margin: 30px 0 10px;
}

.news_item .news_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #151515;
}

.news_page_img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 30px 0;
}

.news_page_img img {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .all_news {
        grid-template-columns: 1fr 1fr;
    }

    .news_item .news_title {
        width: 50%;
    }
}

@media screen and (max-width: 1080px) {
    .all_news {
        grid-template-columns: 1fr;
    }

    .news_item .news_title {
        width: 70%;
    }

    .news_item .news_title {
        width: 100%;
    }
}

@media screen and (max-width: 672px) {
    .news_item_picture {
        width: 350px;
        height: 370px;
    }

    .news_item .news_date {
        margin: 10px 0;
    }

    .all_news {
        row-gap: 40px
    }
}