/* ============================================================
   あまた音楽堂 新着情報ページ専用 (amata_news.css) v1
   読み込み: News/index.twig / News/detail.twig の
   {% block stylesheet %} からのみ。共通CSSには入れない。
   ============================================================ */

.amata-news {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---- 一覧 ---- */
.amata-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.amata-news__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--amata-line);
}
.amata-news__date {
  flex-shrink: 0;
  color: var(--amata-ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  font-feature-settings: 'tnum';
}
.amata-news__title {
  color: var(--amata-ink);
  font-weight: 700;
  line-height: 1.6;
}

/* リンクの行だけホバー装飾(「押せそうに見える=押せる」の原則)。
   --plain(リンクなし)には一切のホバー反応を付けない */
a.amata-news__title {
  text-decoration: none;
  transition: color var(--amata-dur-fast) ease;
}
a.amata-news__title:hover,
a.amata-news__title:focus-visible {
  color: var(--amata-teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.amata-news__empty {
  padding: 40px 0;
  text-align: center;
  color: var(--amata-ink-soft);
}

/* ---- 詳細 ---- */
.amata-news--detail .amata-news__head {
  margin-bottom: 40px;
  text-align: center;
}
.amata-news__ttl {
  margin: 8px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.amata-news__body {
  line-height: 2;
}
.amata-news__body a {
  color: var(--amata-teal);
}
.amata-news__back {
  margin-top: 48px;
  text-align: center;
}
.amata-news__back a,
.amata-news__more a {
  color: var(--amata-teal);
  font-weight: 700;
  text-decoration: none;
}
.amata-news__back a:hover,
.amata-news__back a:focus-visible,
.amata-news__more a:hover,
.amata-news__more a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---- レスポンシブ ---- */
@media (max-width: 768px) {
  .amata-news__item {
    flex-direction: column;
    gap: 4px;
  }
}