body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
}

.news-header {
  text-align: center;
  padding: 40px 0 20px;
}

.news-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10% 60px;
}

.news-card {
  width: 30%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-content {
  padding: 16px;
}

.news-content h3 {
  color: #8AAAE5;
  margin: 0 0 8px;
}

.news-content .summary {
  font-size: 14px;
  color: #444;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #8AAAE5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.read-more:hover {
  background: #5f85db;
}
