
.news-showcase{
    width:100%;
}

.news-top{
    display:grid;
    grid-template-columns:  1.1fr  1.2fr;
    gap:0px;
    align-items:stretch;
}



.hero-image{
    width:100%;
    height:100%;
    background:  #f5f9f9;
    padding: 10px;
}

.hero-image a{
    display:block;
    width:100%;
    height:100%;
}

.hero-image img{
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    display:block;
    
}
.bottom-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

/* ===== First Title ===== */
.news-item:first-child h3{
    margin: 0;
}
.news-item:first-child h3 a{

  
        display: block !important;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 32px;
    font-size: 22px;
    margin-bottom: 5px;

}

/* ===== Remaining Titles ===== */




.news-item{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:18px 20px;
    border-bottom:1px solid #dfdfdf;
    cursor:pointer;
    padding:11px 0 11px 5px;
}

.news-item:last-child{
    border-bottom:none;
}


.news-item:hover,
.news-item.active{ 
    background:#f5f9f9;
}

.news-item.active h3,
.news-item:hover h3{
    color:#003d80;
}


.news-item a{
    text-decoration:none;
}

.news-item h3{
    margin: 0;
}
.news-item h3 a{
   
    display: block !important;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width: 100%;
    color: #242222; 
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 19px;
    text-shadow: 0px 0px #242222;
}

.news-item .news-tags{
    display: flex;
    gap: 5px;
}
.news-sep{
height: 100%;
    border-right: 1px solid #d9d7d7;
}


.news-item .news-tags {
    display: flex;
    gap: 5px;
    height: 20px;
    align-items: center;
}




.news-item span a:hover{
    text-decoration:underline;
}

.news-item>a{
    display: none;
}



/* ===============================
   Mobile (767px and below)
================================ */

@media screen and (max-width:767px){

    .news-top{
        display:block !important;
    }


    .hero-image{
        width:100% !important;
        height:220px !important;
    
    }

    .hero-image img{
        width:100% !important;
        height:100% !important;
        object-fit:cover;
    }

    .news-list{
        width:100% !important;
        margin-left: 0px !important;
      
    }
    .news-item{
          display: flex;
    flex-direction: row;
    }
    
    .news-item h3 a {
        color: #242222;
        height: 100%;
    }
    
    .news-list .news-item:first-child>a{
        display: none;
    }
    .news-item h3 {
        flex:1;
        padding: 0 5px;
    }
     .news-item>a img{
        max-width: 75px;
        height: 100%;
        object-fit: cover;
     }

        .news-item:first-child{
      
        padding:0 15px 5px 15px;
     
      
    } 
    .news-item{
        width:100%;
        padding:15px;
        box-sizing:border-box;
    } 
    .news-item .news-tags{
    display: none;}

    .news-item>a{
        display: block;
    }



}