/*
 * news.css — News page
 * Desai Lab · Case Western Reserve University
 */

/* ===== EMPTY STATE ===== */

.news-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-16) 0 var(--sp-24);
}

.news-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-card);
  outline: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-8);
  padding: 16px;
}

.news-empty-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-empty h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.news-empty p {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

/* Coming soon indicator */
.news-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.news-follow-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
}

.news-follow-links {
  display: flex;
  gap: var(--sp-3);
}
