body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 20px;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

#news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.news-card:hover {
  transform: scale(1.01);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-card h2 {
  font-size: 1.3rem;
  margin: 16px;
  color: #222;
}

.news-card h4 {
  font-size: 1rem;
  margin: 0 16px;
  color: #777;
}

.news-card p {
  margin: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.news-card small {
  display: block;
  margin: 0 16px 16px;
  color: #999;
  font-size: 0.85rem;
}
