.news-section{
  padding:60px 0;
  background:#f5f5f5;
}

.news-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.news-card:hover{
  transform:translateY(-5px);
}

.news-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.news-content{
  padding:20px;
}

.news-title{
  font-weight:800;
  color: #881111;
}

.news-desc{
  font-size:14px;
  color:#555;
}

.news-footer{
  display:flex;
  justify-content:space-between;
  font-size:13px;
}

/* dark card */
.news-card.dark{
  position:relative;
}

.news-card.dark .overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color:#fff;
}