.news-section {
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: 30px auto;
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.news-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.news-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.news-description {
  flex: 1;
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.news-read-more {
  text-decoration: none;
  font-weight: 600;
  color: var(--green);
  transition: color 0.3s ease;
}

.news-read-more:hover {
  color: #019a40;
}
