body {
  font-family: 'Arial', sans-serif;
  margin: 0;
}
.news-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e5e7eb;
}
.news-card-content {
  padding: 1.5rem;
}
.news-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.news-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.4;
}
.news-card .source {
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.news-card .date {
  color: #9ca3af;
  font-size: 0.85rem;
}