section.news_archive ul.news_filter_years {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px;
    margin: -10px;
}

section.news_archive ul.news_filter_years li {
    padding: 10px;
}

section.news_archive ul.news_filter_years li a {
    font-family: 'Space Mono', sans-serif;
    color: #301760;
    text-decoration: none;
}

section.news_archive ul.news_filter_years li a.active {
    border-bottom: 2px solid #301760;
}

section.news_archive ul.news_filter_tags {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 30px;
    margin: -10px;
}

section.news_archive ul.news_filter_tags li {
    padding: 10px;
}

section.news_archive ul.news_filter_tags a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 15px;
    height: 50px;
    border: 1px solid #301760;
    border-radius: 3px;
    color: #301760;
}

section.news_archive ul.news_filter_tags a.active {
    background: linear-gradient(31.21deg, #A00060 0%, #2D1460 100%);
    color: white;
}

section.news_archive .news_area {
    position: relative;
    padding-bottom: 50px;
}

body.loading .news_area::before {
    background: url('../img/spinner.svg') 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    margin-left: -75px;
    top: 0;
    left: 50%;
    z-index: 1;
}

body.loading .news_area .news_list {
    opacity: 0.5;
}

body.loading a {
    pointer-events: none;
}

section.news_archive .news_list {
    transition: opacity ease-in-out 0.3s;
}

section.news_archive .news_list a.news_item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    color: #000;
    transition: all ease-in-out 0.2s;
}

section.news_archive .news_list a.news_item:hover {
    background: linear-gradient(31.21deg, #A00060 0%, #2D1460 100%);
    color: white;
}

section.news_archive .news_item .news_content {
    flex: 1;
    max-width: 650px;
    padding: 30px;
    box-sizing: content-box;
}

section.news_archive .news_item .news_year {
    width: 50%;
}

section.news_archive .news_item .news_title {
    font-size: 20px;
    font-weight: bold;
    color: #301760;
    margin: 10px 0 20px;
    transition: color ease-in-out 0.2s;
}

section.news_archive .news_list a.news_item:hover .news_title {
    color: #fff;
}

section.news_archive .news_item .news_more {
    display: flex;
    align-items: center;
    color: #FFA33A;
    font-size: 18px;
    font-weight: bold;
}

section.news_archive .news_item .news_more svg {
    margin-left: 20px;
}

section.news_archive .news_item .news_image {
    width: 360px;
    min-height: 178px;
    position: relative;
}

section.news_archive .news_item .news_image img {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.news_archive .news_pagination {
    background: #ffdfc3;
    padding: 30px;
    margin-bottom: 30px;
}

section.news_archive .news_pagination ul {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

section.news_archive .news_pagination .page-numbers {
    display: block;
    padding: 6px 10px;
    text-decoration: none;
    color: #28284F;
}

section.news_archive .news_pagination a:hover {
    color: #7e7e8b;
}

section.news_archive .news_pagination .page-numbers.current {
    color: #7c7c7c;
    background: #fff;
}

section.news_archive .news_search_input {
    width: 100%;
    padding: 0 12px;
    height: 50px;
    border: 1px solid #28284F !important;
    color: #28284F;
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 100%;
}

@media (max-width: 1200px) {
    section.news_archive .news_item .news_image {
        width: 300px;
    }
}

@media (max-width: 768px) {
    section.news_archive .news_item .news_content {
        order: 1;
    }

    section.news_archive .news_item .news_image {
        order: 0;
        width: 100%;
        padding-top: 50%;
    }
}