.news-title .background-news{
    position: absolute;
    content:"";
    width: 190px;
    height: 190px;
    border-radius: 100px;
    background-color: var(--main-color-2);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-95px, -95px);
    transform: translate(-95px, -95px);
    z-index: -1;
}

.news-title{
    position: relative;
    height: 100%;
    min-height: 190px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.news-title-margin{
    height: calc(100% - 60px);
}

.news-box{
    background-color: var(--main-color-4);
    margin-bottom: 60px;
}

.news-content{
    padding: 30px;
}

.news-content img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 180px;
}

.news-content h2.frontpage{
    margin-bottom: 20px;
}

.news-content img{
    margin-bottom: 10px;
}

.news-content .news-date-box{
    margin-bottom: 20px;
}

/* _______ FEATURED NEWS ________ */

.news-content.featured{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.news-content.featured .featured-first-part img{
    width: 400px;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.featured-first-part{
    margin-right: 30px;
    width: 400px;
}

/* ________ DATE BOX ___________ */

.news-date-box{
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 10px;
    width: auto;
    background-color: var(--main-color-2);
}

.news-date-box.single{
    height: 40px;
}

/* _________ MARGIN PAGED ___________ */

.news-pages-margin{
    content:"";
    margin-top: 180px;
}

.category-news-pages-margin{
    content:"";
    margin-top: 100px;
}

/* __________ FEATURED TITLE MOBILE ________ */

.featured-title-mobile{
    display: none;
}

/* ___________ MEDIA QUERIES _________*/

@media (max-width: 1200px){
    .news-content.featured .featured-first-part img{
        width: 300px;
        max-height: 230px;
    }

    .featured-first-part{
        width: 300px;
    }
}

@media (max-width: 992px){
    .news-title-margin{
        margin-bottom: 60px;
        height: 100%;
    }
    
    .news-content.featured .featured-first-part img{
        width: 320px;
        max-height: 250px;
    }

    .featured-first-part{
        width: 320px;
    }
}

@media (max-width: 768px){
    .featured-title-mobile{
        display: block;
    }
    
    .featured-title-desktop{
        display: none;
    }
    
    .news-content.featured{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
    
    .news-content.featured .featured-first-part img{
        width: 100%;
        max-height: 260px;
    }

    .featured-first-part{
        width: 100%;
        margin-right: 0px;
    }
    
    .news-content img{
        max-height: 200px;
    }
    
    
    /* _________ MARGIN PAGED ___________ */

    .news-pages-margin{
        margin-top: 140px;
    }
    
    .category-news-pages-margin{
        margin-top: 50px;
    }
    
}

@media (max-width: 576px){
    .news-content img{
        max-height: 180px;
    }
}