/* 駅そば業界レポート ブログ専用スタイル */
/* ヘッダー関連のCSSはここに書かない（styles.css側の .site-header 系を利用） */
/* .blog-cards / .blog-card のグリッド(3カラム→モバイル1カラム)は
   ../styles.css の .blog-cards / .blog-card 定義をそのまま利用する */

/* ブログ一覧カード: 日付・見出し・要約の追加スタイル */
.blog-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card time {
  display: block;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  margin: 8px 0;
}
.blog-card p {
  font-size: .82rem;
  line-height: 1.75;
  margin: 0;
  color: var(--muted);
}

/* 記事本文コンテナ */
.article-content {
  min-width: 0;
}
.article-content h2 {
  scroll-margin-top: 8.5rem;
}
.article-content figure {
  margin: 0 0 1.6em;
}
.article-content figure img {
  width: 100%;
  border-radius: 2px;
}
.article-content figcaption {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 8px;
}

/* 記事共有ボックス */
.share-box {
  border-top: 1px dashed var(--line);
  padding-top: 32px;
  margin: 12px 0 48px;
}
.share-box h2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0 0 16px;
}
.share-box p {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.share-box a {
  display: inline-block;
  padding: 9px 18px;
  background: var(--soba);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  font-size: .82rem;
}
.share-box a:hover {
  background: var(--vermillion-deep);
}

/* サイドバー内広告バナー(a8.net テキスト型) */
.amazon-banner {
  margin: 0;
}
.amazon-banner a {
  display: block;
  background: var(--paper);
  border: 1px dashed var(--line);
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: .8rem;
  line-height: 1.6;
}
.amazon-banner a:hover {
  border-color: var(--vermillion);
  color: var(--vermillion-deep);
}

/* モバイルでは本文欄の左右余白を16px以内に保つ */
@media (max-width: 768px) {
  .article-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
