.news-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 10px;
}
@media screen and (min-width: 575.98px) {
    .news-list .news-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}
@media screen and (max-width: 1199.98px) {
    .news-list {
        gap: 14px;
    }
}
.news-card {
    display: flex;
    gap: 42px;
}
@media screen and (max-width: 575.98px) {
    .news-card {
        flex-direction: column;
        gap: 0;
    }
}
.news-banner {
    background: #202020;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
    padding: clamp(20px, 3.2vw, 32px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
.news-filter{
    position: absolute;
    background: linear-gradient(
        90deg,
        rgba(32, 32, 32, 0.9) 20%,
        rgba(32, 32, 32, 0.6) 50%,
        rgba(32, 32, 32, 0.1) 100%
    );
    width: 100%;
    height: 965px;
    top: -100%;
    left: 0;
}
.news-banner * {
    color: #FFFFFF;
}
.news-banner__title {
    max-width: 400px;
    z-index: 2;
}
@media screen and (max-width: 575.98px) {
    .news-banner__title {
        max-width: 70%;
    }
}
.news-banner__desc {
    max-width: 400px;
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: clamp(12px, 1.6vw, 16px);
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    z-index: 2;
}
@media screen and (max-width: 991.98px) {
    .news-banner__desc {
        -webkit-line-clamp: 3;
    }
}
@media screen and (max-width: 575.98px) {
    .news-banner__desc {
        max-width: 60%;
    }
}
.news-banner__btn {
    margin-top: auto;
    max-width: fit-content;
    z-index: 2;
}
@media screen and (max-width: 575.98px) {
    .news-banner__btn {
        font-size: 12px;
        padding: 10px 15px;
    }
}
.news-short {
    flex: 0 0 clamp(224px, 32vw, 320px);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 575.98px) {
    .news-short {
        padding: 14px 0 0;
        padding-left: 20px;
        flex: unset;
        max-width: 70%;
    }
}
.news-short__title {
    font-size: clamp(16px, 2.4vw, 24px);
}
.news-short__desc {
    color: #999999;
    font-size: clamp(12px, 1.8vw, 18px);
    margin-top: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-short__desc > * {
    color: inherit;
}
@media screen and (max-width: 991.98px) {
    .news-short__desc {
        -webkit-line-clamp: 3;
    }
}
.news-short__btn {
    margin-top: auto;
    border-color: #202020;
    max-width: fit-content;
}
@media screen and (max-width: 575.98px) {
    .news-short__btn {
        font-size: 12px;
        padding: 10px 15px;
    }
}
.news {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 3.2vw, 32px);
}
.news__source {
    font-size: clamp(10px, 1.4vw, 14px);
    color: #999999;
}
@media screen and (min-width: 575.98px) {
    .news__source {
        display: none;
    }
}
.news__text {
    display: flex;
    flex-direction: column;
}
.news__text h2{
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: .8em;
    margin-top: clamp(32px, 5.2vw, 52px);
}
.news__text p{
    font-size: clamp(16px, 3.2vw, 22px);
    color: #202020;
    line-height: 1.1;
    margin-top: .8em;
    text-align: justify;
}
.news-cover {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 400px;
}
.news-cover * {
    color: #FFFFFF;
}
@media screen and (max-width: 575.98px) {
    .news-cover {
        aspect-ratio: 300/170;
        height: unset;
    }
}
.news-cover__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -1;
}
.news-cover__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(10px, 3vw, 30px) clamp(16px, 5.2vw, 52px);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(32, 32, 32, 0.7);
}
.news-cover__time, .news-cover__watched {
    font-size: clamp(10px, 1.2vw, 12px);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    padding: 4px 10px;
    white-space: nowrap;
}
.news-cover__time svg, .news-cover__watched svg {
    height: 14px;
    width: auto;
}
.news-cover__time {
    background: #3E68AA;
}
.news-cover__watched {
    background: #FFFFFF;
    color: #999999;
}
.news-cover__date {
    font-size: clamp(10px, 1.4vw, 14px);
    margin-left: clamp(2px, 1vw, 10px);
}
.news-cover__source {
    font-size: clamp(10px, 1.4vw, 14px);
    margin-left: auto;
}
@media screen and (max-width: 575.98px) {
    .news-cover__source {
        display: none;
    }
}
.another-news__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(16px, 3.2vw, 32px);
}
.another-news__more {
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.1;
    font-weight: 600;
    text-decoration: underline;
    color: #3E68AA;
}
.another-news__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.another-news__slider {
    overflow: visible !important;
    margin-top: clamp(16px, 3.2vw, 32px);
}

.news__text .wp-block-image {
    margin: 1.6em 0;
    border-radius: 16px;
    overflow: hidden;
}

.news__text .wp-block-image img {
    border-radius: 16px;
    overflow: hidden;
}

.news__text .wp-block-image + h2,
.news__text .wp-block-image + p,
.news__text h2 + p {
    margin-top: 0;
}

@media(max-width:1100px){
    .news-filter{
        position: absolute;
        background: linear-gradient(
            90deg,
            rgba(32, 32, 32, 0.9) 20%,
            rgba(32, 32, 32, 0.6) 60%,
            rgba(32, 32, 32, 0.1) 100%
        );
        height: 965px;
        top: -50%;
    }
}

@media(max-width:575.98px) {
    .news-list {
        display: flex;
        flex-direction: column;
    }

    .news-list .news-banner {
        min-height: clamp(14.25rem, calc(11.11rem + 15.69vw), 16.75rem);
    }

    .news-filter{
        position: absolute;
        background: linear-gradient(
            90deg,
            rgba(32, 32, 32, 0.9) 0%,
            rgba(32, 32, 32, 0.8) 30%,
            rgba(32, 32, 32, 0.7) 50%,
            rgba(32, 32, 32, 0.5) 70%,
            rgba(32, 32, 32, 0.25) 90%,
            rgba(32, 32, 32, 0.15) 100%
        );
        height: 965px;
        top: -50%;
    }
}