.group-news .news{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    grid-gap: 25px;
    height: max-content;
    width: 100%;
}

.group-news .news .news-item:first-child{
    grid-row: 1/3;
    grid-column: 1/3;
}
/* .group-news .news .news-item:first-child img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
.group-news .news .news-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: black;
}
.group-news .news .news-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.group-news .news .news-item .news-title{
    position: absolute;
    bottom: 0px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.514);
    width: 100%;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
}
.group-news {
    overflow: hidden;
}
.group-news .wrap[role="wrap"]::-webkit-scrollbar{
    display: none;
}
.group-news .wrap[role="wrap"]{
    width: 100% !important;
    overflow-x: scroll;
}
.group-news .inner[role="inner"] {
    display: flex;
    flex-direction: row;
    width: max-content;
}

.group-news .item[role="item-noncol"] {
    width: 300px;
    margin: 10px;
}

@media only screen and (max-width:767px){
.group-news .container-fluid{
    padding: 0;
}
}