.home-news-card { 
  overflow: hidden; 
}

.home-news-link{
  display:flex;
  flex-direction:column;
  height:100%;
  color:inherit;
  text-decoration:none;
}

.home-news-thumb{
  height: 160px;                 
  width: 100%;
  background-color:#f1f5f9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.home-news-bd{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 190px;             
}

.home-news-meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size: 13px;
}

.home-news-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  margin:0;
}

.home-news-excerpt{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  margin:0;
}

.home-news-bd .link{ 
  margin-top:auto; 
  font-weight: 600;
}

.card-hover:hover .home-news-thumb{ 
  filter: saturate(1.05) contrast(1.03); 
  transform: scale(1.02);
  transition: all .25s ease;
}