.news-wrap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    max-width: calc(100% - 9.9999em);
    margin: auto;
}

.first-title {
    margin-top: 3em;
}

.news-filter-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.236%;
    width: min(587px, calc(100% - 32px));
    height: 32px;
    margin: 0 auto 3em;
}

.news-filter-wrapper a {
    box-sizing: border-box;
    height: 32px;
    padding: 0;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Monument Extended", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.news-filter-wrapper a:hover,
.news-filter-wrapper a.active {
    color: #fff;
}

.news-filter-wrapper a.active {
    border-bottom-color: #c22019;
}

.news-filter-wrapper a:focus-visible {
    outline: 1px solid #c22019;
    outline-offset: 3px;
}

.news-teaser-new:nth-child(2),
.news-teaser-new:nth-child(5) {
    margin-top: 0;
}

.news-teaser-new {
    margin-bottom: 1.5em;
}

.news-filter-empty {
    margin: 3em auto;
    text-align: center;
}

.news-teaser-new[hidden],
.news-filter-empty[hidden] {
    display: none !important;
}

.news-page .breadcrums {
    margin-left: 11.4em;
    z-index: 3;
}

.news-page .block_section {
    min-height: 102vh;
    min-height: 102dvh;
    justify-content: flex-start;
}

@media (max-width: 1000px) {
    .news-wrap-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .news-teaser-new:nth-child(2n) {
        margin-top: 0;
    }

    .first-title {
        margin-top: 8em;
    }

    .news-filter-wrapper a {
        font-size: 10px;
        line-height: 14px;
        text-transform: uppercase;
        letter-spacing: 10%;
        font-weight: 400;
        height: 24px;
    }

    .news-page .breadcrums {
        margin-left: 0;
        z-index: 3;
        font-size: 16px;
        top: 4em;
    }

    .news-page .parallax-wrapper {
        opacity: 1;
    }
}

@media (max-width: 585px) {
    .news-page .bg-gradient {
        background-size: contain;
        background-position: top;
        background-color: #000;
    }
}