.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}
.news-card {
  background: #fff;
  border-radius: 14px;
  border: 0.5px solid #e5e5e5;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.15s ease;
  height: 100%;
}
.news-card:hover { transform: translateY(-2px); }
.news-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.news-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(180,110,60,0.92);
  color: #fff;
  text-transform: uppercase;
}
.news-body { padding: 16px 18px 18px; }
.news-title { font-size: 15px; font-weight: 600; color: #1a1a1a; margin: 0 0 8px; line-height: 1.45; }
.news-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-date { font-size: 12px; color: #aaa; margin-bottom: 10px; }
.news-read-more { font-size: 13px; font-weight: 600; color: #B4622A; }
.news-body {
  padding: 16px 18px 18px;
  display: flex;          
  flex-direction: column; 
}
.news.news-title{
   min-height: 44px;
}
.news-excerpt {
  flex: 1; 
}
.news-read-more {
  margin-top: auto; 
}