/* ===========================================
   Component — News Item Row
   Shared by: TOP, news.html, news-detail.html
   =========================================== */

.news-list      { width: 100%; margin-bottom: 60px; }
.news-item      { border-bottom: 1px solid var(--color-border); }

.news-link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 8px;
  text-align: left;
  transition: opacity 0.2s ease;
}
.news-link:hover { opacity: 0.6; }

.news-date {
  font-size: 16px;
  color: var(--color-text);
  flex-shrink: 0;
  width: 96px;
}

.news-tag {
  flex-shrink: 0;
  font-size: 13px;
  background: var(--color-accent);
  color: #fff;
  padding: 4px 12px;
  width: 150px;
  text-align: center;
  white-space: nowrap;
}

.news-title { font-size: 16px; color: var(--color-text); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .news-link { flex-wrap: wrap; gap: 10px 16px; }
}
