.news__header {
    display: flex;
    align-items: center;
    column-gap: 18px;
    margin-bottom: 50px;
}
.news__slider {
    flex: 1;
}
.news__filter {
    padding: 16px 18px;
    flex: none;
    border-radius: 13px;
    background: #FEFEFE;
}
.news__filter__items {
    column-gap: 13px;
    display: flex;
}
.news__filter .select .select__header {
    width: 130px;
    padding: 14px 22px;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    border: 1px solid #F5F7FA;
    background-color: #F5F7FA;
    height: 48px;
}
.news__filter .select.selected .select__header {
    background: #FEFEFE;
    border: 1px solid rgba(44, 99, 172, 0.30);
}
.news__filter .select .select__header--text {
    flex: 1;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    margin-right: 0;
}
.news__filter .select .select--arrow {
    font-size: 20px;
    margin-left: 14px;
}
.news__filter .select .select__body ul li {
    font-size: 16px;
    line-height: 18px;
}
.news__filter--all {
    font-size: 16px;
    line-height: 18px;
    padding: 10px 15px;
    width: 194px;
    height: 48px;
    border: 1px solid #F5F7FA;
    background-color: #F5F7FA;
    color: #2C63AC;
    text-align: center;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news__filter--all.selected {
    background: #FEFEFE;
    border: 1px solid rgba(44, 99, 172, 0.30);
    color: #231F20;
}
.newsListContainer {
    padding: 80px 0;
    background-color: #F7F7F9;
}
.newsList .slick-track {
    display: flex;
}
.newsList--title {
    margin-bottom: 47px;
}
.newsItem {
    padding: 20px 20px 24px 20px;
    gap: 20px;
    border-radius: 40px;
    background: #FFF;
    width: 454px;
    margin-left: 9px;
    margin-right: 9px;
    height: auto !important;
}
.newsItem--image {
    height: 297px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    display: block;
}
.newsItem__content {
    padding: 0 10px;
}
.newsItem__data {
    display: flex;
    align-items: center;
}
.newsItem--date {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    color: #383838;
    font-size: 12px;
    line-height: 14px;
}
.newsItem--date>span {
    font-size: 14px;
    margin-right: 8px;
}
.newsItem__tags {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-left: 8px;
}
.newsItem--tag {
    padding: 6px 14px;
    border-radius: 13px;
    background: #EDEEEF;
    color: #383838;
    font-size: 12px;
    line-height: 14px;
}
.newsItem--title {
    margin-top: 14px;
    color: #383838;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
}
.newsList__buttons {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 33px;
}

.newsList--arrow {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 3px 6px 10px rgba(189, 200, 222, 0.6);
    cursor: pointer;
}
.newsList--arrow span {
    font-size: 24px;
}
.newsList--arrow span:before {
    color: #004E86;
    transition: color 0.2s ease;
}
.newsList--arrow:hover {
    box-shadow: 6px 6px 9.6px rgba(0, 78, 134, 0.16);
}
.newsList--arrow:active {
    background: #004E86;
    box-shadow: 6px 6px 9.6px rgba(0, 78, 134, 0.16);
}
.newsList--arrow:active span:before {
    color: #fff;
}
.newsList--right span {
    transform: rotateY(180deg);
}

.news__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 18px;
    row-gap: 16px;
}
.news__items .newsItem {
    width: auto;
    margin-left: 0;
    margin-right: 0;
}
.newsItem.type2 {
    border-radius: 27px;
    border: 1px solid rgba(44, 99, 172, 0.10);
    transition: border 0.2s ease, box-shadow 0.2s ease, margin 0.2s ease;
}
.newsItem.type2 .newsItem--image {
    height: auto;
    margin-bottom: 12px;
    border-radius: 17px;
    transition: margin 0.2s ease;
    overflow: hidden;
}
.newsItem.type2 .newsItem--image img {
    width: 100%;
    display: block;
}
.newsItem.type2 .newsItem--date {
    padding: 3px 14px;
    border-radius: 36px;
    border: 1px solid rgba(44, 99, 172, 0.00);
    background: rgba(44, 99, 172, 0.05);
    color: #2C63AC;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    transition: font-size 0.2s ease, line-height 0.2s ease;
}
.newsItem.type2 .newsItem__tags {
    margin-left: 6px;
    column-gap: 6px;
}
.newsItem.type2 .newsItem--tag {
    padding: 3px 14px;
    border-radius: 36px;
    border: 1px dashed rgba(44, 99, 172, 0.60);
    color: #2C63AC;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    background-color: transparent;
    transition: font-size 0.2s ease, line-height 0.2s ease;
}
.newsItem.type2 .newsItem--title {
    margin-top: 7px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-transform: none;
    transition: margin 0.2s ease;
}

@media screen and (max-width: 1300px) {
    .news__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1201px) {
    .newsItem.type2:hover {
        border: 1px solid rgba(35, 31, 32, 0.20);
        box-shadow: 20px 4px 52px 0 rgba(147, 151, 173, 0.25);
        margin-top: -20px;
    }
    .newsItem.type2:hover .newsItem--image {
        margin-bottom: 20px;
    }
    .newsItem.type2:hover .newsItem--date {
        font-size: 15px;
        line-height: 20px;
    }
    .newsItem.type2:hover .newsItem--tag {
        font-size: 15px;
        line-height: 20px;
    }
    .newsItem.type2:hover .newsItem--title {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .newsListContainer {
        padding: 70px 0;
    }
    .newsList--title {
        margin-bottom: 51px;
    }
    .newsItem--date {
        font-size: 16px;
        line-height: 16px;
    }
    .newsItem--date>span {
        font-size: 18px;
    }
    .newsItem--tag {
        font-size: 16px;
        line-height: 18px;
    }
    .newsList--arrow {
        display: none !important;
    }
    .news__filter {
        padding: 8px;
    }
    .news__filter__items {
        padding: 2px;
        border-radius: 7px;
        background: #F5F7FA;
        column-gap: 8px;
    }
    .news__filter .select .select__header {
        width: 87px;
        padding: 15px 10px;
    }
    .news__filter .select .select--arrow {
        font-size: 18px;
        margin-left: 2px;
    }
    .news__filter .select .select__header--text {
        font-size: 15px;
    }
    .news__filter .select .select__body ul li {
        font-size: 15px;
    }
    .news__filter--all {
        width: 126px;
        font-size: 15px;
        padding: 10px;
        color: rgba(0, 26, 52, 0.50);
    }
    .news__header {
        column-gap: 8px;
        margin-bottom: 30px;
    }
    .news__items {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 12px;
    }
}

@media screen and (max-width: 700px) {
    .newsListContainer {
        padding: 50px 0;
    }
    .newsList--title {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    .newsItem {
        padding: 12px 12px 24px;
        width: 284px;
        border-radius: 23px;
    }
    .newsItem--image {
        border-radius: 13px;
        height: 187px;
        margin-bottom: 14px;
    }
    .newsItem__content {
        padding: 0 10px;
    }
    .newsItem--date {
        padding: 6px 0;
        font-size: 14px;
    }
    .newsItem--date>span {
        font-size: 15px;
    }
    .newsItem__tags {
        margin-left: 22px;
    }
    .newsItem--tag {
        font-size: 14px;
        line-height: 16px;
        padding: 5px 14px;
    }
    .newsItem--title {
        font-size: 15px;
        line-height: 19px;
    }
    .newsList__buttons {
        margin-top: 30px;
    }
    .news__header {
        flex-wrap: wrap;
        row-gap: 22px;
        margin-bottom: 22px;
    }
    .news__header>div {
        width: 100%;
    }
    .news__filter {
        padding: 10px;
    }
    .news__filter__items {
        background: none;
        padding: 0;
    }
    .news__filter .select .select__header {
        height: 44px;
        padding: 14px 16px;
    }
    .news__filter .select .select--arrow {
        margin-left: 0;
    }
    .news__filter .select .select__header--text {
        font-size: 14px;
    }
    .news__filter .select .select__body ul li {
        font-size: 14px;
        line-height: 16px;
    }
    .news__filter .select {
        width: auto;
        flex: 1 1 96px;
    }
    .news__filter .select .select__header {
        width: 100%;
    }
    .news__filter--all {
        font-size: 14px;
        line-height: 16px;
        height: 44px;
        width: auto;
        flex: 1 1 138px;
    }
    .newsItem.type2 .newsItem--date {
        padding: 3px 11px;
    }
    .newsItem.type2 .newsItem--tag {
        padding: 3px 11px;
    }
    .newsItem.type2 .newsItem--title {
        font-size: 15px;
        line-height: 18px;
    }
}

@media screen and (max-width: 550px) {
    .news__items {
        grid-template-columns: repeat(1, 1fr);
        column-gap: 28px;
        row-gap: 28px;
    }
}