.news-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* 3 columns responsive */
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 16px;
  color: #f0f0f0;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: scale(1.02);
}

.news-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  display: block;
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.news-card h3 a {
  color: #f7c948;
  text-decoration: none;
}

.news-card h3 a:hover {
  text-decoration: underline;
}

.news-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.news-card small {
  display: block;
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.8rem;
}

.more-news-link {
  margin-top: 1rem;
  text-align: center;
}

.more-news-link a {
  text-decoration: none;
  color: #f7c948;
  font-weight: bold;
}

.more-news-link a:hover {
  text-decoration: underline;
}
