.news__title {
    color: var(--main-blue);
    margin-bottom: 40px;
}
.news__items__wrapper {
    padding-top: 40px;
}
.news__item:first-child {
    margin-top: -10px;
}
.news-tab-wrapper .tabs-wrapper > li:nth-child(1) {
    /*order: 6;*/
}
.news__item {
    padding: 20px 0;
    border-top: 1px solid rgba(151, 151, 151, .2);
    color: var(--black-color);
}
.news__item .list__item__date {
    font-family: var(--font-gotham);
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 300;
        opacity: .7;

}
.list__item__title__link {
    font-family: var(--font-gotham);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black-color);
    text-decoration: none;
}
a:hover.list__item__title__link {
    color: var(--black-color);
    text-decoration: none;
}
.cta-primary.local-link.list__item__link {
    padding-left: 0px;
    opacity: .8;
}
.cta-primary.local-link.list__item__link:before {
    display: none;
}
.news-pagination a, .archive__news-pagination a{
    width: 232px;
    max-width: 232px;
    height: 46px;
    border-radius: 0;
    border: 1px solid var(--dark-blue);
    font-size: 16px;
    line-height: 3.6rem;
    font-weight: 700;
    text-decoration: none;
    border-color: var(--main-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    
}
.news-pagination, .archive__news-pagination {
    color: var(--main-blue);
    border-color: var(--main-blue);
    text-align: center;
    margin:20px 0px;
}
.news-pagination a:hover, .archive__news-pagination a:hover {
    color: #fff;
    background: var(--main-blue);
}
.single-item {
    display: none;
}

.single-item:nth-last-child(1), .single-item:nth-last-child(2), .single-item:nth-last-child(3) {
    display: block;
}
@media all and (min-width: 768px) {
    .news__content {
        overflow: hidden;
    }
    .news__item:first-child {
        margin-top: 0px;
    }
   
}
@media all and (max-width: 768px) {
  
    .news__item {
            padding: 30px 20px;

    }
    .news__item .list__item__date{
    margin:0;
    }
   
}