/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */





/*  ==========  NEWS SECTION  ==========  */
#news .news-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
#news .news-inner .block{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#news .news-inner .block .image-wrap{
    width: 100%;
    height: 260px;
}
#news .news-inner .block .image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}
#news .news-inner .block .title-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#news .news-inner .block .title{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 140%;
}
#news .news-inner .block:hover .title{
    color: var(--color-accent);
}
#news .news-inner .block .stats-wrap{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}
#news .news-inner .block .stats-wrap .item{
    display: flex;
    align-items: center;
    gap: 6px;
}
@media screen and (max-width: 960px){
    #news .news-inner{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 480px){
    #news .news-inner{
        grid-template-columns: 1fr;
        gap: 60px
    }
}
/*  ==========  END NEWS SECTION  ==========  */