.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.news-item {
  border: 1px solid #ddd;
  padding: 15px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.news-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-thumb img {
  width: 100%;
  height: auto;
}

.news-title {
  font-size: 1.2em;
  margin: 10px 0 5px 0;
}

.news-title a {
  text-decoration: none;
  color: #333;
}

.news-excerpt {
  font-size: 0.95em;
  color: #555;
}
