.featured-news-section {
    padding: 120px 0 85px;
    background-color: #fff;
}

.featured-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.featured-image {
    width: 62.31%;
    border-radius: 8px;
    overflow: hidden;
}
.featured-image .swiper-slide{
    position: relative;
}
.featured-image .swiper-slide h4{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    opacity: 0;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-list {
    position: relative;
    width: 33.25%;
    display: flex;
    flex-direction: column;
}
.featured-list .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.news-item {
    padding: 20px 42px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.news-item.swiper-slide-thumb-active,
.news-item:hover {
    color: #fff;
    background: #040404;
    border-radius: 15px;
    border-color: transparent;
    transition: all .6s;
}

.news-item h3 {
    /* font-weight: 600; */
    font-size: 18px;
    color: #111111;
    line-height: 26px;
    transition: all .6s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Poppins-SemiBold';
}

.news-item .date {
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 1;
    margin-top: 15px;
    
}
.news-item.swiper-slide-thumb-active h3,
.news-item:hover h3,
.news-item.swiper-slide-thumb-active .date,
.news-item:hover .date {
    color: rgba(255, 255, 255, 1);
    transition: all .6s;
}

.filter-container {
    display: flex;
    gap: 20px;
}

.filter-dropdown {
    position: relative;
    width: 268px;
    cursor: pointer;
    z-index: 100;
}

.selected-value {
    /* border: 1px solid #eee; */
    padding: 20px 15px;
    /* border-radius: 4px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 10px;
    border: 1px solid #E7EAF0;
}

.filter-dropdown:hover .selected-value {
    border-color: #000;
    color: #000;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.filter-dropdown:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list li a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    color: #666;
    transition: 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-list li:last-child a {
    border-bottom: none;
}

.dropdown-list li a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 20px;
}

.filter-dropdown:hover .selected-value i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.search-bar {
    flex: 1;
    /* border: 1px solid #eee; */
    padding: 20px 30px;
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #E7EAF0;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-bar i {
    color: #000;
    cursor: pointer;
}

.news-grid-section {
    padding: 110px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
}

.news-grid-section .pagination {
    margin-top: 49px;
}

.news-grid-section .section-title {
    text-align: left;
    margin-bottom: 1.45em;
    text-transform: uppercase;
}

.sub-header-inner{
    padding: 86px 0 46px;
    border-bottom: 2px solid #000;
}

.sub-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {/* font-weight: 600; */font-size: 18px;color: rgba(0, 0, 0, 1);line-height: 24px;display: flex;align-items: center;gap: 12px;font-family: 'Poppins-SemiBold';}

.back-link:hover {
    color: #000;
}

.social-share {
    display: flex;
    gap: 12px;
}

.social-share a {
    width: 37px;
    height: 37px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-share a:hover {
    color: rgba(59, 255, 217, 1);
}

.article-section {
    padding: 100px 0 0;
    max-width: 94%;
    margin: 0 auto;
    width: 1143px;
}
.article-section .tetx-container{
    margin-top: 66px;
}
.article-title {
    line-height: 1.3;
}
.article-section .tetx-container img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.article-text h3 {
    font-size: 16px;
    /* font-weight: 700; */
    margin-bottom: 10px;
    color: #000;
    font-family: 'Poppins-SemiBold';
}

.article-text p {
    font-size: 15px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: justify;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(211, 211, 210, .5);
    /* border-bottom: 1px solid #eee; */
    padding: 20px 0 0;
    margin-top: 75px;
    font-weight: 600;
    font-size: 14px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-weight: 600; */
    font-size: 18px;
    color: #222222;
    line-height: 24px;
    font-family: 'Poppins-SemiBold';
}
@media (max-width:1199px) {
    .news-item{
        padding: 20px;
    }
    .news-grid-section{
        padding: 80px 0;
    }
    .article-section{
        padding: 80px 0 0;
    }
    .sub-header-inner{
        padding: 80px 0 45px;
    }
    .article-nav,
    .article-section .tetx-container{
        margin-top: 45px;
    }
    .news-grid{
        gap: 30px;
    }
    .featured-list{
        width: 35%;
        display: none;
    }
    .featured-image .swiper-slide h4{
       opacity: 1;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
       text-overflow: ellipsis;
    }
    .featured-news-section{
        padding: 80px 0;
    }
    .news-grid-section .pagination{
        margin-top: 45px;
    }
    .featured-container{
        flex-direction: column;
    }
    .featured-image,
    .featured-list{
        width: 100%;
    }
}
@media (max-width:1024px) {
    .featured-news-section{
        padding: 70px 0;
    }
    .news-grid-section .pagination{
        margin-top: 40px;
    }
    .news-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .news-grid-section{
        padding: 70px 0;
    }
    .article-section{
        padding: 70px 0 0;
    }
    .sub-header-inner{
        padding: 70px 0 40px;
    }
    .article-nav,
    .article-section .tetx-container{
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .featured-news-section{
        padding: 60px 0;
    }
    .news-grid-section .pagination{
        margin-top: 35px;
    }
    .news-grid{
        grid-template-columns: repeat(1,1fr);
    }
    .news-grid-section{
        padding: 60px 0;
    }
    .article-section{
        padding: 60px 0 0;
    }
    .sub-header-inner{
        padding: 60px 0 35px;
    }
    .article-nav,
    .article-section .tetx-container{
        margin-top: 35px;
    }
    .filter-container{
        flex-direction: column;
    }
    .filter-dropdown{
        width: 100%;
    }
    .search-bar,
    .selected-value{
        padding: 15px;
    }
    .featured-container{
        gap: 30px;
    }
}
@media (max-width: 500px) {
    .featured-container{
        gap: 25px;
    }
    .featured-news-section{
        padding: 50px 0;
    }
    .news-grid-section .pagination{
        margin-top: 30px;
    }
    .nav-center,
    .back-link{
        font-size: 16px;
    }
    .news-grid-section .section-title{
        font-size: 20px;
        margin-bottom: 1.1em;
    }
    .social-share{
        gap: 6px;
    }
    .news-grid-section{
        padding: 50px 0;
    }
    .article-section{
        padding: 50px 0 0;
    }
    .sub-header-inner{
        padding: 50px 0 30px;
    }
    .article-nav,
    .article-section .tetx-container{
        margin-top: 30px;
    }
}