.news-page__header {
    margin-bottom: 32px;
}

.news-page__title {

}

.news-page__btns {

}

.news-page__btn {

}

.news-page__btn--active {

}

.news-page__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 16px;
    margin-bottom: 32px;
    min-height: 183px;
}

.news-page__cards .news-page__card {
    width: calc(100% / 3 - (16px * 2 / 3));
}

.news-page-more .news-page__card {
    height: 100%;
}

.news-page__card {
    display: block;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    cursor: pointer;
}

.news-page__card-pic {
    width: 100%;
    height: 280px;

    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 16px;
    background-position: center;
}

.news-page__card-content {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 16px;
}

.news-page__card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.news-page__card-tag {
    border-radius: 8px;
    padding: 5px 8px;
    background: rgba(0, 0, 0, 0.08);
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #535862;
}

.news-page__card-title {
    margin-top: 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    margin-bottom: 16px;
}

.news-page__card-date {
    margin-top: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #535862;
}

.news-page__show-more-btn {
    background: unset;
    max-width: max-content;
    margin: 0 auto 48px auto;
}

.news-page-header {
    height: 360px;
    width: 100%;
    margin-bottom: 52px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.news-page-content {
    padding-bottom: 48px;
}

.news-page-content__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.news-page-content__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #535862;
}

.article-container {
    max-width: 912px;
}

.news-page-content__title {
    text-align: left;
}

.news-page-more {
    padding-top: 32px;
    border-top: 1px solid #d9d9d9;
    padding-bottom: 48px;
}

.news-page-content__article h1,
.news-page-content__article h2,
.news-page-content__article h3,
.news-page-content__article h4,
.news-page-content__article h5,
.news-page-content__article h6 {
    text-align: left;
    margin-bottom: 16px;
}

.news-page-content__article p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #181d27;

    margin-bottom: 45px;
}


.news-page-content__article img {
    margin-bottom: 45px;
}

.news-image--full {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    height: auto;
}

@media (max-width: 1000px) {
    .news-page__cards .news-page__card {
        width: calc(100% / 2 - (16px / 2));
    }

    .news-page__btns {
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    .news-page__cards .news-page__card {
        width: 100%;
    }
}