.qp-latest-news{
    padding: 140px 0;
    background: var(--second-color);
}
.qp-latest-news .news-top{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-top .title{
    color: var(--text-color-black);
    font-family: var(--font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
}
.news-top .desc{
    color: #666;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-desc-weight);
    line-height: var(--line-height); /* 150% */
    margin-top: 12px;
}
.news-top a{
    display: inline-flex;
    height: 50px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 24.329px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: 500;
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
    white-space: nowrap;
}
.news-top a:hover{
    color: var(--primary-color) !important;
}

.news-list{
    display: flex;
    gap: 30px;
    margin-top: 60px;
}
.news-list .news-left{
    max-width: 780px;
}
.news-list .news-box{
    background: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
}
.news-list .news-box:hover{
    background: var(--primary-color);
}
.news-list .news-box:hover .news-title{
    color: var(--text-color-white);
}
.news-list .news-box:hover .news-desc{
    color: var(--text-color-white);
}
.news-list .news-box:hover .con{
    color: var(--text-color-white);
}
.news-list .news-box:hover img{
    transform: scale(1.1);
}
.news-list .news-title{
    color: var(--text-color-black);
    font-family: var(--font-title-family);
    font-size: 30px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 46px; /* 153.333% */
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-list .news-desc{
    color: #666;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-top: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-list .date{
    display: flex;
    align-items: center;
    gap: 10px;
}
.news-list .date .ico{
    width: 24px;
    height: 24px;
}
.news-list .date .con{
    color: #666;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: var(--font-style);
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
}

.news-left img{
    width: 100%;
    max-height: 490px;
    object-fit: cover;
}
.news-left .box-con{
    padding: 40px 30px 30px 30px;
}
.news-left .date{
    margin-top: 28px;
}

.news-list .news-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news-right .news-desc{
    display: none;
}
.news-right .news-box a{
    display: flex;
}
.news-right img{
    width: 240px;
    height: 240px;
    object-fit: cover;
}
.news-right .box-con{
    padding: 48px 30px;
}
.news-right .date{
    margin-top: 24px;
}


@media screen and (max-width: 1919px) {
    .news-list .news-left,
    .news-list .news-right{
        width: 50%;
    }
    .news-list .news-title{
        font-size: 24px;
        line-height: var(--line-height);
    }
    .news-list .news-desc{
        line-height: var(--line-height);
    }
    .news-right img{
        width: 30%;
        height: auto;
    }
    .news-right .box-con{
        padding: 45px 30px;
    }
}
@media screen and (max-width: 1500px) {
    .news-right .box-con{
        padding: 32px 30px;
    }
}
@media screen and (max-width: 1280px) {
    .news-right .box-con{
        padding: 29px;
    }
}
@media screen and (max-width: 1200px) {
    .news-list .news-title{
        font-size: 20px;
    }
    .news-left .box-con{
        padding: 25px;
    }
    .news-right .box-con{
        padding: 20px;
    }
}
@media screen and (max-width: 992px) {
    .news-right .box-con{
        padding: 8px;
    }
}
@media screen and (max-width: 767px) {
    .qp-latest-news {
        padding: 50px 0;
    }
    .news-list{
        margin-top: 30px;
        flex-direction: column;
    }
    .news-list .news-left,
    .news-list .news-right{
        width: 100%;
    }
}