div[class*='UILastestNews_full'] .UILastestNews{
    margin-top: 20px;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    border-top: 2px solid var(--color-primary);
    box-shadow: var(--box-category);
}
div[class*='UILastestNews_full'] .UILastestNews .Header{
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #D9D9D9;
}
div[class*='UILastestNews_full'] .UILastestNews .Header .HeaderWrap
{
    height: 100%;
    display: table;

}
 div[class*='UILastestNews_full'] .UILastestNews .Header .HeaderWrap>span{
        display: table-cell;
    vertical-align: middle;
}
div[class*='UILastestNews_full'] .UILastestNews .Header .HeaderWrap>span>a{
    font-family: "Merriweather";
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: #031739;
    text-transform: uppercase;
}

div[class*='UILastestNews_full'] .UILastestNews .Wrap{display: flex;gap: 20px;max-height: 300px;}

div[class*='UILastestNews_full'] .UILastestNews .Wrap .first{
    margin: 10px 0;
    width: calc(25% - 15px);
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next{
    display: flex;
    /* width: calc(75% + 20px); */
    gap: 20px;
    flex: 1;
    /* flex-grow: 1; */
    justify-content: flex-end;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main{
    position: relative;
}

div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .img-news img{
        height: 175px;
        width: 100%;
        object-fit: fill;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info{
    bottom: 0;
    width: 100%;
    margin-top: 10px;
    display: table;
    height: 100px;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info .news-sapo{
    display: none;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info a{
    flex: 1;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info a .news-title{
    font-family: "Merriweather";
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: #182940;
    margin: 0;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info span.time{
    color: #6C757D;
    font-family: "Roboto";
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    min-height: 19.5px;
    margin-bottom: 0;
    display: table-footer-group;
    /* vertical-align: bottom; */
    /* height: 10px; */
}

div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-sapo{
    display: none;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .img-news img{
    width: 100%;
    height: 175px;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item{
    /* border-top: 1px solid #eeeeee; */
    padding: 10px 0;
    width: calc((100% - 40px) / 3);
    /* flex-grow: 1; */
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info {
    margin-top: 10px;
    display: table;
    /* height: 100%; */
    height: 100px;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info a .news-title{
    font-family: "Merriweather";
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: #182940;
    margin: 0;
}
div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info span.time{
    color: #6C757D;
    font-family: "Roboto";
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    min-height: 19.5px;
    /* content: ''; */
    /* display: none; */
    display: table-footer-group;
    /* vertical-align: bottom; */
    /* margin-bottom: 0; */
    /* height: 10px; */
}

@media only screen and (max-width: 768px) {
    div[class*='UILastestNews_full'] .UILastestNews{
        padding: var(--padding-res);
        border-top: 1px solid #F2F2F2;
        /* padding-top: 10px; */
        height: auto;
        width: 100vw;
    }
     div[class*='UILastestNews_full'] .UILastestNews .Wrap{
         height: auto;
         flex-direction: column;
         justify-content: flex-start;
         max-height: unset;
         gap: 10px;
     }
    div[class*='UILastestNews_full'] .UILastestNews .Header{
        border-bottom: 0;
        position: relative;
        margin-bottom: 10px;
        padding-top: 10px;
    }
   div[class*='UILastestNews_full']  .UILastestNews .Header:after{
        width: 80px;
        height: 1px;
        background: var(--color-primary);
        content: '';
        position:absolute;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Header>.HeaderWrap>span.text>a.text{
        color: var(--color-primary);
        font-family: Merriweather;
        font-size: 17px;
        font-weight: 700;
        line-height: 23px;
        text-align: left;
        text-transform: math-auto;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first{
        width: 100%;
        margin: 0;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .img-news img{
        width: 100%;
        height: calc((100vw - 32px) / 16 * 10);
        object-fit: cover;
        /* display: none; */
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .img-news img{
        display: none;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .next{
        flex-direction: column;
        gap: 0;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main{
        position: unset;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info{
        position: unset;
        background: transparent;
        height: auto;
        padding: 0;
        gap: 10px;
        margin-top: 15px;
        display: block;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info a .news-title{
        //styleName: text/04;
        font-family: "Merriweather";
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        text-align: left;
        color: #212529;
    }
     div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info span.time,
        div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info span.time{
         display: block;
         color: #6C757D;
         font-family: "Roboto";
         font-size: 13px;
         font-weight: 400;
         line-height: 19.5px;
         text-align: left;
         order: 3;
         margin-top: 10px;
     }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info .news-sapo{
        //styleName: sapo/02;
        font-family: "Roboto";
        font-size: 15px;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        color: #484848;
        display: block;
        order: 2;
        margin: 0;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item{
        height: auto;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #eeeeee;
    }
     div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info{
         margin-top: 0;
         display: block;
         height: unset;
     }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .next .news-item .news-info a .news-title{
        //
        styleName: text/03;
        font-family: Merriweather;
        font-size: 15px;
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        color: #212529;
        /* margin-bottom: 10px; */
    }
}
@media only screen and (min-width: 769px) and (max-width: 1199px){
    div[class*='UILastestNews_full'] .UILastestNews {
        width: 100%;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .img-news img{
        height: 200px;
        object-fit: cover;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .first .item-main .news-info a .news-title,
    .UILastestNews .Wrap .next .news-item .news-info a .news-title{
        font-size: 0.9em;
    }
    div[class*='UILastestNews_full'] .UILastestNews .Wrap .next {
        padding: 0 5px;
    }
}