.news-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0044aa 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.news-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.news-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.news-list-section {
  padding: var(--section-padding) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-card-content {
  padding: 28px;
}

.news-card-date {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-summary {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card-link:hover {
  color: #0044aa;
}

.news-empty {
  text-align: center;
  color: #888;
  padding: 60px 0;
  font-size: 1.1rem;
}

.news-detail-section {
  padding: var(--section-padding) 0;
}

.news-back-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.news-back-link:hover {
  color: #0044aa;
}

.news-detail-header {
  margin-bottom: 40px;
}

.news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #888;
  font-size: 0.9rem;
}

.news-detail-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.news-detail-content p {
  margin-bottom: 20px;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.news-detail-content h2,
.news-detail-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .news-hero {
    padding: 50px 0;
  }

  .news-hero-title {
    font-size: 1.8rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-detail-title {
    font-size: 1.5rem;
  }
}
