/* ============================================
   News - Midnight Cabinet Override
   ============================================ */

.news-article {
  max-width: 860px;
  margin: 0 auto;
}

.news-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border, rgba(212,168,83,0.15));
}

.news-article-header time {
  font-size: 0.82rem;
  color: var(--text-muted, #6e7a88);
}

.news-article-header h1 {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}

/* News list in index */
.news-index-list {
  list-style: none;
  padding: 0;
}
.news-index-item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border, rgba(212,168,83,0.15));
  transition: background 0.3s;
}
.news-index-item:hover {
  background: rgba(212,168,83,0.05);
  padding-left: 0.5rem;
}
.news-index-item time {
  font-size: 0.8rem;
  color: var(--text-muted, #6e7a88);
  white-space: nowrap;
  min-width: 100px;
}
.news-index-item a {
  color: var(--text-primary, #ecf0f4);
  font-weight: 500;
  font-size: 0.95rem;
}
.news-index-item a:hover {
  color: var(--gold, #d4a853);
}

/* Source link */
.news-source {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-strong, rgba(212,168,83,0.35));
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gold, #d4a853);
}
.news-source:hover {
  background: rgba(212,168,83,0.1);
}

@media (max-width: 768px) {
  .news-index-item {
    flex-direction: column;
    gap: 0.3rem;
  }
}
