/*Results*/
.news-categories-swiper {
    padding-bottom: 4px;
}
.news-categories-swiper::before {
    content: "";
    position: absolute;
    bottom: 5px;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    width: 50px;
}
.news-categories-swiper::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    border-bottom: 2px solid var(--default);
}
.news-category-res-tab-item {
    margin-bottom: -2px;
}
.news-category-res-tab {
    padding: 12px 0;
    cursor: pointer;
    line-height: 1;
    min-height: 100%;
    position: relative;
}
.news-category-res-tab-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    z-index: 2;
    background-color: var(--primary);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.news-category-res-tab:hover .news-category-res-tab-line,
.news-category-res-tab.active .news-category-res-tab-line {
    bottom: -2px;
    height: 6px;
}
.new-res-image {
    position: relative;
    padding-top: 115%;
    overflow: hidden;
}
.new-res-image img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.new-res-over {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 60%,rgba(0,0,0,0.6) 100%);
    padding: 10px;
    color: var(--white);
}
.new-res-category,
.new-publish-category {
    padding: 1px 4px;
    font-size: 13px;
    background-color: var(--default);
    color: var(--white);
    font-weight: 500;
}
.new-res-category {
    position: absolute;
    top: 5px;
    left: 5px;
}
.new-res-date {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--white);
    color: var(--default);
    padding: 2px 5px;
    font-size: 14px;
    font-weight: 700;
}
.new-res-title {
    font-weight: 700;
}
.new-res-wrap:hover .new-res-image img {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    /*Results*/
    .new-res-over {
        padding: 15px;
    }
    .new-res-category,
    .new-publish-category {
        padding: 2px 5px;
        font-size: 14px;
    }
    .new-res-date {
        font-size: 16px;
    }
}
/* md */
@media (min-width: 768px) {
    /*Results*/
    .news-category-res-tab {
        padding: 20px 0;
    }
    .news-category-res-tab-line {
        bottom: 10px;
    }
}
/* lg */
@media (min-width: 992px) {

}
/* xl */
@media (min-width: 1200px) {
    /*Results*/
    .news-category-res-tab {
        padding: 25px 0;
    }
    .news-category-res-tab-line {
        bottom: 20px;
    }
}
/* xxl */
@media (min-width: 1500px) {

}