/* ============================================================
   お知らせ(News)一覧 — サムネイル無し・文字だけのシンプルリスト
   （ブログ一覧 page-blog.css のカード型とは別デザイン）
   ============================================================ */
.th-news-list {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}
.th-news-item {
  border-top: 1px solid var(--line, rgba(42, 34, 24, 0.12));
}
.th-news-item:last-child {
  border-bottom: 1px solid var(--line, rgba(42, 34, 24, 0.12));
}
.th-news-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.th-news-link:hover {
  background: rgba(200, 84, 30, 0.05);
  padding-left: 12px;
}
.th-news-date {
  flex-shrink: 0;
  min-width: 8.5em;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink3);
}
.th-news-title {
  flex: 1;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  transition: color 0.2s ease;
}
.th-news-link:hover .th-news-title {
  color: var(--accent);
}

/* 空状態 */
.th-news-empty {
  margin: 2.5rem 0;
  padding: 2rem;
  text-align: center;
  color: var(--ink3);
  border: 1px dashed var(--line, rgba(42, 34, 24, 0.12));
  border-radius: 8px;
}
.th-news-empty a { color: var(--accent); }

/* スマホ: 日付を上・タイトルを下に縦積み */
@media (max-width: 600px) {
  .th-news-link {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .th-news-date { min-width: 0; font-size: 0.74rem; }
  .th-news-title { font-size: 0.98rem; }
}
