/* News Page Styles */
.news-list {
  display: grid;
  gap: 20px;
}

.news-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-tag {
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 12px 0;
  line-height: 1.5;
}

.news-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .news-card {
    padding: 18px;
    border-left-width: 3px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .news-list {
    gap: 16px;
  }

  .news-card {
    padding: 16px;
  }

  .news-meta {
    flex-wrap: wrap;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.85rem;
  }
}
