/* NEWS ARCHIVE / SINGLE */
.news-main { background: #fff; padding: 48px 40px; min-height: 60vh; }
.news-main-inner { max-width: 1160px; margin: 0 auto; }

/* LIST */
.news-list { list-style: none; }
.news-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-border);
  align-items: stretch;
}
.news-item:first-child { border-top: 1px solid var(--gray-border); }

/* alert行のみ薄赤背景 */
.news-item.cat-alert-row {
  background: #fff8f8;
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 2px;
}

/* 左カラーバー */
.news-bar { border-radius: 0; align-self: stretch; min-height: 18px; }
.news-bar.bar-info          { background: #3a6adf; }
.news-bar.bar-alert         { background: var(--red); }
.news-bar.bar-org           { background: #1f6e1f; }
.news-bar.bar-event         { background: #c06d20; }
.news-bar.bar-uncategorized { background: #d0d0d0; }

/* 右側コンテンツ */
.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }

/* カテゴリ名（バッジスタイル） */
.news-cat { font-size: 10px; font-weight: 700; white-space: nowrap; flex-shrink: 0; padding: 2px 8px; border-radius: 2px; color: #fff; }
.news-cat.cat-info          { background: #3a6adf; }
.news-cat.cat-alert         { background: var(--red); }
.news-cat.cat-org           { background: #1f6e1f; }
.news-cat.cat-event         { background: #c06d20; }
.news-cat.cat-uncategorized { background: #9aa1a8; }

.news-sep  { color: #ddd; font-size: 10px; }
.news-date { font-size: 11px; color: var(--gray-text); white-space: nowrap; flex-shrink: 0; }
.news-title { font-size: 13px; color: var(--dark); transition: color 0.18s; line-height: 1.5; }
.news-title:hover { color: var(--red); }
.news-item.cat-alert-row .news-title { font-weight: 700; }
.news-pagination { margin-top: 32px; text-align: center; }

/* SINGLE */
.news-single-wrap { background: #fff; padding: 48px 40px; }
.news-single-inner { max-width: 1160px; margin: 0 auto; }
.ns-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ns-title { font-size: 22px; font-weight: 700; line-height: 1.4; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-border); }
.ns-body { font-size: 13px; color: #444; line-height: 1.9; }
.ns-body p { margin-bottom: 14px; }
.ns-body h2 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
.ns-body h3 { font-size: 15px; font-weight: 700; margin: 20px 0 10px; }
.ns-body ul, .ns-body ol { padding-left: 20px; margin-bottom: 14px; }
.ns-body li { margin-bottom: 4px; }
.ns-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-border); display: flex; justify-content: space-between; }
.ns-nav-link { font-size: 12px; color: var(--red); font-weight: 700; }
.ns-nav-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .news-main { padding: 32px 16px; }
  .news-single-wrap { padding: 32px 16px; }
  .ns-title { font-size: 18px; }
  .page-header { padding: 28px 16px 22px; }
}
