/* /assets/posts_widget.css
   Designed to match your "glass + cards" style, without breaking existing classes.
*/
#news .cards, #newsGrid.cards { gap: 14px; }
.news-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 68px rgba(0,0,0,.30);
}
.news-cover{ height: 170px; background: rgba(0,0,0,.18); }
.news-cover img{ width:100%; height:100%; object-fit:cover; display:block; }
.news-body{ padding: 14px 14px 16px; }
.news-label{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.news-title{ font-weight: 900; margin-top: 10px; line-height: 1.6; }
.news-sub{ margin-top: 8px; color: rgba(255,255,255,.70); line-height: 1.8; min-height: 44px; }
.news-actions{ margin-top: 12px; }
