.suggested-news {
    display: flex;
    gap: 25px;
}

.suggested-news .itemNews {
    width: 100%;
}

.itemNews {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-template-rows: minmax(300px, auto);
    height: 100%;
}

.itemNews:hover .itemNews_img img {
    scale: 1.1;
}

.itemNews:hover .img-back {
    opacity: 1;
    visibility: visible;
}

.itemNews:hover .n-btn {
    opacity: 1;
    transform: translateY(0);
}

.itemNews.small:hover .itemNewsBody,
.itemNews.small:hover .n-title,
.itemNews.small:hover .n-cat {
    color: #fff;
}


.itemNews_img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}
.itemNews_img img {
    transition: all ease-in-out .3s;
}

.itemNewsBody {
    position: relative;
    background-color: #0D2147;
    color: #fff;
    padding: 23px 34px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.itemNewsBody .img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out .3s;
}

.itemNewsBody .img-back.red {
    background-color: var(--theme-color-primary1);
}

/* Pattern item pour NOS*/
body.nos .itemNewsBody .img-back img {
    opacity: .4;
}

.itemNewsBody .bd-top, .bd-bottom {
    position: relative;
    z-index: 5;
}

.itemNews .n-title {
    color: #fff;
    font-family: Poppins;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 8px;
}

.itemNews .n-date {
    font-size: 12.8px;
    font-weight: 500;
    margin-bottom: 8px;
}

.itemNews .n-cat {
    font-size: 12.8px;
    color: #2FAB53;
    font-weight: 500;
    line-height: 1.35;
}

.tag-news {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0 5px;
    font-size: 10.24px;
    font-weight: 600;
}

.itemNews.small .itemNewsBody {
    background-color: #F6F6F6;
    color: #595959;
}

.itemNews .n-descr {
    margin-bottom: 8px;
    line-height: 1.35;
}

.itemNews.small {
    color: #000;
    grid-template-columns: 180px 1fr;
}


.itemNews.small {
    color: #595959;
}

.itemNews.small .n-title {
    color: #0D2147;
    font-size: 14px;
}

.itemNews.small .n-descr {
    font-size: 12.8px;
}

.itemNews .n-btn {
    transform: translateY(30px);
    opacity: 0;
}



@media (min-width: 1025px){
    .itemNews.small:hover .n-descr {
        -webkit-line-clamp: 3;
    }
}

@media (min-width: 1281px){
    .sugg-typ-2 .itemNews.small {
        grid-template-columns: 296px 1fr;
        grid-template-rows: 300px;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 1025px) {
    .sugg-typ-2 .itemNews.small {
        grid-template-columns: 200px 1fr;
    }
}


@media (max-width: 1280px){
    
    .itemNews.small {
        grid-template-columns: 130px 1fr;
    }
    .itemNewsBody {
        padding: 24px 20px;
    }
}

@media (max-width: 1024px){
    .suggested-news {
        gap: 20px;
    }
    .itemNews.small {
        grid-template-columns: 45% 1fr;
    }
}

@media (max-width: 992px){
    .suggested-news {
        flex-direction: column;
    }
    .itemNews.small {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .itemNews.small .itemNewsBody {
        height: auto !important;
        padding: 16px 32px;
    }
    .itemNews.small .n-descr {
        -webkit-line-clamp: 3;
    }
    .itemNews {
        grid-template-rows: auto;
    }
    .itemNews_img {
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    .itemNewsBody {
        border-radius: 0 0 8px 8px;
    }
}
