#news {
    flex-grow: 1;
    background: rgba(217, 215, 209, 1);

    #breadcrumbs li:last-child {
        width: auto; 
    }

    .news-list__section-selector {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        gap: 1px;
        margin: 0;
        padding: 0;

        li {
            box-sizing: border-box;
            background: rgba(153, 180, 207, 1);
            padding: 8px 20px;

            &.-active {
                background: rgba(173, 52, 8, 1);
            }

            &:first-child {
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
            }

            &:last-child {
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
            }
        }

        a {
            color: rgba(255, 255, 255, 1);
            font-family: "Roboto";
            font-size: 20px;
            font-weight: 400;
            line-height: 36px;
            text-decoration: none;
        }
    }
}

@media only screen and (max-width: 1300px) {
    #news-header {
        height: 230px;

        .news-header__brand-line {
            top: 40px;
        }
    }
}

#news-list__filter {
    padding-top: 80px;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#news-list {
    padding-bottom: 160px;

    .news-list__list {
        display: flex;
        justify-content: center;
        margin-top: 42px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .news-list__item {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 30px;
        flex-basis: 480px;
        transition: background 0.3s ease-in-out;
        text-align: left;
        background-position: center center;
        gap: 20px;
        height: 570px;

        &:hover {
            background: rgba(255, 255, 255, 1);
        }
    }

    .news-list__item-title {
        a {
            color: rgba(249, 116, 26, 1);
            font-family: "PT Serif Caption", serif;
            font-style: Bold;
            font-size: 24px;
            font-weight: 700;
            line-height: 32px;
            text-decoration: none;
        }
    }

    .news-list__item-text {
        flex-grow: 1;
        overflow: hidden;
        position: relative;

        &:after {
            content: '';
            position: absolute;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            height: 70px;
            background-image: linear-gradient(transparent, #FFF);
        }

        p {
            margin: 0;
            color: rgba(23, 32, 48, 1);
            font-family: "Roboto";
            font-size: 20px;
            font-weight: 300;
            line-height: 24px;
        }
    }

    .news-list__item-date {
        color: rgba(23, 32, 48, 1);
        font-family: "PT Serif Caption", serif;
        font-style: Bold;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .news-list__item-img {
        height: 300px;
        min-height: 300px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .news-list__pagination {
        margin-top: 60px;
        display: flex;
        list-style: none;
        gap: 8px;
        align-items: center;
        justify-content: center;

        .news-list__pagination-first, .news-list__pagination-prev, .news-list__pagination-next, .news-list__pagination-last {
            display: flex;
            align-items: center;

            a {
                display: none;
                width: 16px;
                height: 16px;
                display: block;
            }
        }

        .news-list__pagination-first a {
            background-image: url(/static/images/icons/paginator-first.svg);
        }

        .news-list__pagination-last a {
            background-image: url(/static/images/icons/paginator-last.svg);
        }

        .news-list__pagination-next a {
            background-image: url(/static/images/icons/paginator-next.svg);
        }

        .news-list__pagination-prev a {
            background-image: url(/static/images/icons/paginator-prev.svg);
        }

        .news-list__pagination-page {
            padding: 5px 10px;

            &.-active {
                border-radius: 3px;
                background: var(--orange, rgba(184, 93, 58, 1));
            }

            a, span {
                font-family: "Roboto";
                font-size: 16px;
                font-weight: 300;
                line-height: 22px;
                text-decoration: none;
            }

            span {
                color: rgba(255, 255, 255, 1);
            }

            a {
                color: rgba(23, 32, 48, 1);
            }
        }
    }
}

#news-details {
    margin-top: 55px;
    padding: 0;

    .news-details__container {
        max-width: 1200px;
        margin: 0 auto;
        background: #fff;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .news-details__breadcrumb {
        padding: 32px 32px 0 32px;
    }

    .news-details__wrapper {
        padding: 0 150px;
    }

    .news-details__title {
        h1, h3 {
            margin: 0;
            color: rgba(184, 93, 58, 1);
        }

        h1 {
            margin-bottom: 60px;
        }
    }

    .news-details__item-img {
        min-height: 600px;
        height: 600px;
        background-position: center center;
        background-size: cover;
    }

    .news-details__item-preview-text {
        color: rgba(21, 25, 26, 1);
        font-family: "Roboto";
        font-size: 32px;
        font-weight: 500;
        line-height: 44px;
        text-align: left;
        margin: 32px 0;
    }

    .news-details__item-text {
        font-family: "Roboto";
        font-size: 28px;
        font-weight: 300;
        line-height: 40px;
        text-align: left;
        margin-top: 50px;
        padding-bottom: 70px;

        * {
            font-family: "Roboto";
            font-size: 28px;
            font-weight: 300;
            line-height: 40px;
            text-align: left;
        }
    }

    .news-details__list-wrapper {
        text-align: center;

        h2 {
            margin-top: 100px;
        }
    }

    .news-details__list-title {
        margin: 0 20px;
        border-top: 1px solid rgba(23, 32, 48, 1);
    }

    .news-details__list {
        display: flex;
        justify-content: center;
        margin-top: 42px;
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 150px;
    }

    .news-list__item {
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 30px;
        flex-basis: 480px;
        transition: background 0.3s ease-in-out;
        text-align: left;
        background-position: center center;
        gap: 20px;
        height: 570px;

        &:hover {
            background: rgba(255, 255, 255, 1);
        }
    }

    .news-list__item-title {
        a {
            color: rgba(249, 116, 26, 1);
            font-family: "PT Serif Caption", serif;
            font-style: Bold;
            font-size: 24px;
            font-weight: 700;
            line-height: 32px;
            text-decoration: none;
        }
    }

    .news-list__item-text {
        flex-grow: 1;
        overflow: hidden;
        position: relative;

        &:after {
            content: '';
            position: absolute;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            height: 70px;
            background-image: linear-gradient(transparent, #FFF);
        }

        p {
            margin: 0;
            color: rgba(23, 32, 48, 1);
            font-family: "Roboto";
            font-size: 20px;
            font-weight: 300;
            line-height: 24px;
        }
    }

    .news-list__item-date {
        color: rgba(23, 32, 48, 1);
        font-family: "PT Serif Caption", serif;
        font-style: Bold;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .news-list__item-img {
        height: 300px;
        min-height: 300px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}

@media only screen and (max-width: 1300px) {
    #news-details {
        .news-details__wrapper {
            padding: 0 50px;
        }

        .news-details__item-preview-text {
            font-size: 28px;
            line-height: 36px;
        }

        .news-details__item-text {
            font-size: 28px;
            line-height: 36px;

            * {
                font-size: 28px;
                line-height: 36px;
            }
        }
    }
}

@media only screen and (max-width: 800px) {
    #news {
        .news-list__section-selector {
            li {
                padding: 4px 8px 8px 8px;
            }

            a {
                font-size: 11px;
                line-height: 14px;
            }
        }
    }

    #news-details {
        .news-details__wrapper {
            padding: 0 20px;
        }

        .news-details__item-preview-text {
            font-size: 20px;
            line-height: 28px;
        }

        .news-details__item-text {
            font-size: 20px;
            line-height: 28px;

            * {
                font-size: 20px;
                line-height: 28px;
            }
        }
    }
}

@keyframes moveBgRight {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 63.468254px 0;
    }
}