/* ==========================================================
   都市養蜂ビジネス現況レポート ブログ固有スタイル
   ※ヘッダー/フッターのスタイルは ../styles.css を使用
   ========================================================== */

.blog-page-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.blog-page-lead {
  color: #5b4630;
  margin-bottom: 30px;
}

/* 記事本体 */
.article-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 36px 40px;
  box-shadow: var(--shadow);
}

.article-eyebrow {
  color: var(--amber-deep);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-shell h1 {
  font-size: 1.7rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  font-size: 0.85rem;
  color: #7a6347;
  border-bottom: 2px solid var(--honey);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.article-meta time {
  font-family: var(--font-serif);
  color: var(--amber-deep);
}

.reading-time {
  background: var(--honey);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 12px;
  border-radius: 999px;
}

.article-hero-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 26px;
}

.article-body h2 {
  position: relative;
  font-size: 1.3rem;
  padding-left: 28px;
  border-bottom: 2px solid var(--honey);
  padding-bottom: 8px;
  margin: 36px 0 16px;
}

.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 16px;
  height: 18px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(160deg, var(--amber), var(--amber-deep));
}

.article-body h3 {
  font-size: 1.05rem;
  color: var(--amber-deep);
  margin: 22px 0 10px;
}

.article-body p {
  margin-bottom: 1.2em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.2em;
}

.article-body li + li {
  margin-top: 6px;
}

/* シェアボタン */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.share-button {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff8e8;
}

.share-button:hover {
  opacity: 0.85;
  color: #fff8e8;
}

.share-button.share-x {
  background: var(--ink);
}

.share-button.share-facebook {
  background: var(--amber-deep);
}

/* 記事下ナビ */
.article-back {
  margin-top: 26px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .article-shell {
    padding: 24px 20px 30px;
  }

  .article-shell h1 {
    font-size: 1.35rem;
  }
}

/* Mobile news-commentary readability baseline (shared site-local rule). */
@media (max-width: 768px) {
  .blog-main, .blog-container, .two-col-layout { min-width: 0; }
  .article-detail, .blog-article, .article-body { min-width: 0; }
  .article-detail .article-body, .blog-article { padding-inline: 16px; }
  .article-content {
    font-size: 1rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }
  .article-content h2 { font-size: clamp(1.25rem, 6vw, 1.45rem); line-height: 1.4; }
  .article-content h3 { font-size: clamp(1.12rem, 5vw, 1.25rem); line-height: 1.45; }
  .article-content :is(img, iframe, video) { max-width: 100%; height: auto; }
  .article-content table { display: block; max-width: 100%; overflow-x: auto; }
  .sidebar, .blog-sidebar { position: static; order: 2; }
}
/* Mobile article reading width: keep outer page gutters, remove duplicated inner gutters. */
@media (max-width: 768px) {
  .article-content,
  .article-detail .article-body,
  .blog-article,
  .main-content > article.main-content {
    padding-left: 0;
    padding-right: 0;
  }
  /* Cap article-panel padding without removing deliberate card framing. */
  .article-panel,
  .article-main,
  .post-content,
  .article-detail {
    padding-left: min(16px, 4vw);
    padding-right: min(16px, 4vw);
  }
  .article-body { padding-left: 0; padding-right: 0; }
}
