#home-news-latest {
    font-weight: 700;
    margin-bottom: 4em;
}
.home-news-latest-left {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding: 22px 30px;
}
.home-news-latest-right {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding: 22px 35px;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
    position: relative;
}
.home-news-latest-right .swiper-slide {
    margin-right: 65px !important;
}
.home-news-latest-right:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 310px;
    background: linear-gradient(to right,  rgba(38,50,103,0) 0%,rgba(38,50,103,1) 90%);
    z-index: 1;
    pointer-events: none;
}
@media only screen and (max-width: 768px) {
    .home-news-latest-left {
        display: none;
    }
    .home-news-latest-right {
        padding: 12px 13px;
    }
}
@media only screen and (max-width: 576px) {
    .home-news-latest-right::after {
        width: 200px;
    }
    .home-news-latest-right .swiper-slide {
        margin-right: 45px !important;
    }
}
@media only screen and (max-width: 414px) {
    .home-news-latest-right::after {
        width: 100px;
    }
}