.latest-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.news-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.news-thumb img {
  width: 100%;
  height: 200px!important;
  object-fit: cover;
  display: block;
}

.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-news-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 10px 20px 10px 20px;
  color: #111;
}

.home-news-title a {
  text-decoration: none;
  color: inherit;
}

.home-news-title a:hover {
  color: #0073e6;
}

.news-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
}
