/* ======================================
//     Стили для страницы Новости
====================================== */

/* Хедер страницы */
.page-header {
	background: #fff url("../../Images/third_decade/system/page-header/page-header__news.jpg") no-repeat;
}

/* Новости */
.news {
    margin-top: 35px;
}

.news-filter {
    display: flex;
    align-items: center;
}

.news-filter__select {
    width: 210px;
}

.news-filter__select:hover {
    border: 1px solid #ffd500;
}

.news-filter__select:first-child {
    margin-right: 11px;
}

.news-filter__btn {
    width: 74px;
    height: 40px;
    background-color: #FFD500;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 11px;
    border: none;
}
.news-filter__btn img {
    width: 24px;
    height: 24px;
}

.news-filter__btn:hover {
    border: 1px solid #ffd500;
    background-color: #F0F5F9;
}

.news-list {
    margin-top: 40px;
}

.news-list__year {
    font-weight: 600;
    font-size: 24px;
    color: #808080;
}

.news-list__mounth {
    font-weight: 600;
    font-size: 24px;
    color: #333333;
    margin: 20px 0;
}

.news-list__item {
    display: flex;
    padding: 10px 0;
}

.news-list__date {
    display: flex;
    align-items: center;
    min-width: 100px;
    font-size: 14px;
    line-height: 20px;
    color: #808080;
    margin-right: 15px;
}

.news-list__date img {
    width: 13px;
    height: 13px;
    margin-right: 11px;
}

.news-list__item a {
    font-size: 20px;
    line-height: 24px;
    color: #333;
}

.news-list__item a:hover {
    color: #3072C4;
}


/* ------------------------------ PAGINTION BEGIN ------------------------------ */

.pagination {
    margin-top: 50px;
}

.pagination__item {
    display: inline-block;
    margin: 0 2px;
    overflow: hidden;
    border-radius: 50px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #333;
}

.pagination__active .pagination__link {
    background-color: #FFD500;
    border-color: #FFD500;
    color: #333;
    text-decoration: none;
}

.pagination__item--prev svg, .pagination__item--next svg {
    width: 7px;
    height: 11px;
}

.pagination__item--next svg {
    margin-left: 20px;
}

.pagination__item--next .pagination__link {
    width: auto;
    padding: 0 15px;
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    color: #3072C4;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

/* .pagination__link:focus, .pagination__link:active {
    background-color:#FFD500;
    border-color:#FFD500;
    color: #fff;
    text-decoration: none;
}

.pagination__link:focus svg path, .pagination__link:active svg path {
    fill: #fff;
} */



@media (max-width: 1024px) {
    .news {
        margin-top: 10px;
    }
    .news-list {
        margin-top: 20px;
    }
    .news-filter__select {
        max-width: 140px;
        min-width: 100px;
        width: 100%;
        padding: 0 19px 0 6px;
        background-size: 13px 7px;
    }
    .news-filter__select:first-child {
        margin-right: 8px;
    }
    .news-filter__btn {
        max-width: 62px;
        width: 100%;
    }
    .news-list__year {
        font-size: 18px;
    }
    .news-list__mounth {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .news-list__item {
        flex-direction: column;
        align-items: baseline;
        padding: 10px 0;
        border-bottom: 1px solid #ffd500;
    }
    .news-list__item a {
        font-size: 15px;
        line-height: 21px;
    }
    .news-list__date {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .pagination {
        margin-top: 20px;
    }
}