.news {
    margin: 0 20px 100px;
}

.news__breadcrumbs ol {
    display: flex;
    color: rgba(27, 27, 27, 0.4);
    font-size: 12px;
    list-style: none;
    padding: 0 20px;
    margin-bottom: 80px;
    cursor: default;
}

.news__breadcrumbs a {
    transition: all .3s ease-in-out;
}

.news__breadcrumbs a:after {
    content: '/';
    color: rgba(27, 27, 27, 0.4);
    margin: 0 6px;
}

.news__breadcrumbs a:hover {
    color: rgba(27, 27, 27, 1);
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 60px;
}

.news__title {
    position: relative;
    text-transform: uppercase;
}

.news__title h1 {
    font-size: 20px;
    font-weight: 700;
}

.news__title span {
    position: absolute;
    top: -90px;
    left: -10px;
    font-family: 'Jost';
    color: rgba(29, 29, 29, 0.03);
    font-size: 150px;
    pointer-events: none;
}

.news__sort {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 14px;
}

.news__years {
    display: flex;
    align-items: center;
    color: rgba(27, 27, 27, 0.4);
    text-transform: uppercase;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news__years li:not(:last-child):after {
    content: '/';
    color: rgba(27, 27, 27, 0.4);
    margin: 0 6px;
}

.news__year {
    transition: all .3s ease-in-out;
}

.news__year:hover, .news__year--active {
    color: rgba(27, 27, 27, 1);
}

.news__filters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news__month {
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'WixMadeforDisplay';
}

.news__year-btn {
    display: none;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'WixMadeforDisplay';
}

@media screen and (max-width: 768px) {
    .news {
        margin: 0 15px 70px;
    }

    .news__breadcrumbs ol {
        padding: 0;
        margin-bottom: 35px;
    }

    .news__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin-bottom: 35px;
        gap: 49px;
    }

    .news__title h1 {
        font-size: 18px;
        font-weight: 500;
    }

    .news__title span {
        font-size: 60px;
        top: -32px;
        left: -6px;
    }

    .news__sort {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .news__years {
        display: block;
    }

    .news__years li:not(:first-child) {
        display: none;
    }

    .news__years li:first-child:after {
        display: none;
    }

    .news__years li:first-child .news__year {
        font-size: 14px;
        color: #1B1B1B;
    }

    .news__filters {
        display: flex;
        gap: 20px;
    }

    .news__year-btn {
        display: flex;
    }
}