/* news.css */
.news-section { background: var(--white); }
.news-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }

.news-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item.placeholder-item { opacity: 0.55; }

.news-meta { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.2rem; }
.news-date { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

.news-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
}
.news-tag.award { color: var(--accent); background: var(--accent-light); }
.news-tag.expansion { color: var(--teal); background: var(--teal-light); }
.news-tag.research { color: #b45309; background: #fef3c7; }

.news-body h3 { margin-bottom: 0.75rem; font-size: 1.1rem; line-height: 1.3; }
.news-body p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }

@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 0.75rem; }
}

.news-empty {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.news-empty-icon { font-size: 2rem; color: var(--border); }
.news-empty p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
