h2{
    font-size: 48px;
}
.banner{
   position: relative;
   background: url(../img/news-center-banner.jpg) no-repeat;
   background-size: cover;
   min-height: 30vw;
   padding-bottom: 50px;
   padding-top: 100px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
}
.banner .title-desc{

    width: 100%;
    margin: 0 auto;
}
.banner .title-desc h1{
    font-size: 72px;
    color: #f08400;
}
.banner .title-desc p{
    font-family: robotoregular;
    color: #ffffff;
    font-size: 18px;
}
.news-list .title-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.news-list .title-menu ul{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 24px;
}
.news-list>ul{
    flex-wrap: wrap;
    gap: 40px;
    font-family: robotoregular;
}
.news-list>ul li{
    width: calc((100% - 80px) / 3);
}
.news-list>ul li .date-title-desc{
    background: #fefbf6;
    padding: 30px 20px;
}
.news-list>ul li .date-title-desc .date-title{
    margin-bottom: 20px;
}
.news-list>ul li .date-title-desc .date-title p{
     color: #f08400;
     font-size: 20px;
}
.news-list>ul li .date-title-desc .date-title h3{
    font-size: 20px;
    font-family: robotomedium;
    line-height: 1.5;
    margin-top: 10px;
    overflow: hidden;

text-overflow: ellipsis;

display: -webkit-box;

-webkit-line-clamp: 2;

overflow:hidden;

/*! autoprefixer: off */

-webkit-box-orient: vertical;
}
.news-list>ul li .date-title-desc>p{
      overflow: hidden;

text-overflow: ellipsis;

display: -webkit-box;

-webkit-line-clamp: 2;

overflow:hidden;

/*! autoprefixer: off */

-webkit-box-orient: vertical;
}


.fpage{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.fpage a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 30px;
    background: #f2f4f6;
}
.fpage b{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 30px;
    background: #1a1a1a;
    color: #ffffff;
}


@media (max-width:1080px){
    h2{
        font-size: clamp(40px,5vw,48px);
    }
    .banner .title-desc h1{
        font-size: clamp(60px,8vw,72px);
    }
    .news-list>ul{
        gap: 20px;
    }
    .news-list>ul li{
        width: calc((100% - 40px) / 3);
    }
    .news-list>ul li .date-title-desc .date-title p,.news-list>ul li .date-title-desc .date-title h3{
        font-size: 18px;
    }
}

@media (max-width:768px){
     h2{
        font-size: clamp(30px,5vw,40px);
    }
    .banner .title-desc h1{
        font-size: clamp(50px,7vw,60px);
    }
    .news-list>ul{
        gap:10px;
    }
    .news-list>ul li{
        width: calc((100% - 10px) / 2);
    }
    .news-list>ul li .date-title-desc{
        padding: 15px;
    }
    .news-list>ul li .date-title-desc .date-title p, .news-list>ul li .date-title-desc .date-title h3{
        font-size: 16px;
    }
    .news-list>ul li .date-title-desc>p{
        font-size: 14px;
    }
    

}