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

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

.la-news-list1 .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-list1 .news-tabs li a {
    padding: 10px 42px;
}

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

.la-news-list1 .news-con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
    column-gap: 50px;
    padding-bottom: 80px;
}

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

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

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

.news-con .news-list .news-bottom {
    padding: 30px 30px 40px 30px;
}

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

.news-bottom .time .date {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-bottom .time .date .ico {
    width: 24px;
    height: 24px;
    display: block;
}

.news-bottom .time .date .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;
}

.news-bottom .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;
    margin-top: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.news-bottom .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: 2;
    overflow: hidden;
}

.news-bottom .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: 30px;
}

.la-news-list1 #pagesize {
    padding: 0 0 110px 0;
    margin: 0;
}

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

.la-news-list1 #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-list1 #pagesize ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

@media screen and (max-width: 992px) {
    .la-news-list1 .news-con {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-bottom .title {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .la-news-list1 .news-con {
        grid-template-columns: repeat(1, 1fr);
    }
}