.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.news-card h2 {
  margin: 0 0 4px;
  line-height: 1.2;
}

.news-date {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.news-card p:last-child,
.news-card ul:last-child {
  margin-bottom: 0;
}

.news-card a {
  color: #79b7ff;
  font-weight: 700;
}

.news-empty,
.news-error {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  color: var(--muted);
}
