.la-news-list {
    background: #F2F9FD;
}

.la-news-list .news-tabs {
    display: flex;
    justify-content: center;
    gap: 21px;
    padding: 110px 0 100px 0;
}

.la-news-list .news-tabs li {
    display: inline-flex;
    height: 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    border-radius: 28px;
    background: #FFF;
}

.la-news-list .news-tabs li a {
    padding: 10px 42px;
}

.la-news-list .news-tabs li.active {
    background: var(--second-color);
}


.la-news-list .news-con {
    padding-bottom: 110px;
}

.la-news-list .news-con .news-list {
    display: flex;
    padding: 30px;
}

.la-news-list .news-con .news-list:hover {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(64, 64, 64, 0.06);
}

.la-news-list .news-con .news-list:hover .more {
    background: var(--second-color);
}

.news-con .news-line {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(217, 217, 217, 0.40);
    margin: 30px 0;
}

.news-list .news-left {
    width: 600px;
    height: 400px;
}

.news-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-list .news-right {
    width: calc(100% - 600px);
    padding: 30px 0 30px 56px;
}

.news-right .title {
    color: var(--text-color-black);
    font-family: var(--font-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 700;
    line-height: var(--line-height);
    text-transform: capitalize;
}

.news-right .desc {
    color: #666;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-top: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-right .more {
    display: inline-flex;
    height: 50px;
    padding: 10px 42px;
    justify-content: center;
    align-items: center;
    gap: 24.329px;
    flex-shrink: 0;
    border-radius: 25px;
    background: #ECEDF2;
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 700;
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-top: 50px;
}

.news-right .line {
    display: block;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin: 44px 0;
}

.news-right .bottom {
    display: flex;
    gap: 40px;
}

.news-right .bottom .ico {
    width: 24px;
    height: 24px;
}

.news-right .bottom .con {
    color: #999;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-right: 12px;
}

.la-news-list #pagesize {
    margin: 70px 0 0;
}

.la-news-list #pagesize ul {
    gap: 32px;
}

.la-news-list #pagesize ul li a {
    width: 56px;
    height: 56px;
    border: none;
    padding: 16px 22px;
    border-radius: 50%;
    color: #666;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: var(--font-style);
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    box-shadow: 0 4px 4px rgba(64, 64, 64, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-news-list #pagesize ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.la-news-list #pagesize ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

@media screen and (max-width: 1500px) {
    .news-list .news-left {
        width: 450px;
        height: auto;
    }

    .news-list .news-right {
        width: calc(100% - 450px);
        padding: 20px 0 20px 30px;
    }

    .news-right .more {
        padding: 10px 20px;
        margin-top: 10px;
    }

    .news-right .line {
        margin: 5px 0;
    }
}

@media screen and (max-width: 992px) {
    .la-news-list .news-con .news-list {
        flex-direction: column;
    }

    .news-list .news-left,
    .news-list .news-right {
        width: 100%;
    }

    .news-list .news-right {
        padding: 20px 0;
    }

    .news-right .line {
        margin: 20px 0;
    }
}