/* ─────────────────────────────────────────
   ブランド お知らせ本文の見出し（大／中／小）共通スタイル
   本番ページ: src/pages/news/[id].astro
   プレビュー: src/pages/news/preview.astro
   両方からこのファイルを <link> で読み込む。修正はこの1ファイルのみ。
   ───────────────────────────────────────── */

.news-article__body .news-block-heading--large {
  font-family: var(--font-ja-serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--elcient-black);
  margin: 2.4em 0 1em;
  padding: 0.8em 0 0.5em 0.9em;
  border-left: 5px solid var(--elcient-orange);
}
.news-article__body .news-block-heading--medium {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--elcient-orange);
  margin: 2em 0 0.6em;
}
.news-article__body .news-block-heading--small {
  font-family: var(--font-ja);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--elcient-black);
  margin: 1.6em 0 0.4em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid rgba(20,2,1,0.18);
}
