/* ---- Shared blog detail styles ---- */
.blog-hero { height: 500px; }
.blog-hero .page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}
.blog-hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: #f04404;
  padding: 6px 16px;
}
.blog-hero h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: 800px;
  text-align: center;
}
.blog-hero-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Article layout */
.article-section {
  padding: 80px 40px 0;
  background: #fff;
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-lead {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #333;
  font-weight: 500;
  margin-bottom: 40px;
  border-left: 4px solid #f04404;
  padding-left: 24px;
}
.article-body {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
}
.article-body p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 28px;
}
.article-h2 {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 48px 0 16px;
  line-height: 1.4;
}
.article-section-cont {
  padding: 80px 40px;
  background: #fff;
}

/* Info box */
.info-box {
  background: #f5f5f5;
  border-left: 4px solid #f04404;
  padding: 28px 32px;
  margin: 40px 0;
}
.info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f04404;
  margin-bottom: 16px;
}
.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-box ul li {
  font-size: 14px;
  color: #555;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}
.info-box ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #f04404;
}

/* Pull quote */
.pull-quote-section {
  background: #000;
  padding: 72px 40px;
}
.pull-quote-section blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Amatic SC', handwriting;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #f04404;
  line-height: 1.3;
  text-align: center;
}
.pull-quote-section blockquote::before {
  content: '\201C';
  display: block;
  font-size: 80px;
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* Related posts */
.related-section {
  background: #242424;
  padding: 80px 40px;
}
.related-inner {
  max-width: 900px;
  margin: 0 auto;
}
.related-section h2 {
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ---- Ranking list (blog-whiskey) ---- */
.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  counter-reset: ranking;
}
.ranking-list li {
  counter-increment: ranking;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.ranking-list li::before {
  content: counter(ranking);
  font-family: 'Amatic SC', handwriting;
  font-size: 52px;
  font-weight: 700;
  color: #f04404;
  line-height: 1;
}
.ranking-list .rank-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.ranking-list .rank-desc { font-size: 13px; color: #666; line-height: 1.7; }

/* ---- Process steps (blog-scotch) ---- */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  counter-reset: steps;
}
.process-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}
.process-steps li .step-num {
  font-family: 'Amatic SC', handwriting;
  font-size: 52px;
  font-weight: 700;
  color: #f04404;
  line-height: 1;
}
.process-steps .step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}
.process-steps .step-desc { font-size: 14px; color: #666; line-height: 1.8; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .blog-hero { height: 380px; }
  .article-section { padding: 40px 20px 0; }
  .article-section-cont { padding: 40px 20px; }
  .pull-quote-section { padding: 48px 20px; }
  .related-section { padding: 60px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .ranking-list li { grid-template-columns: 44px 1fr; gap: 12px; }
  .ranking-list li::before { font-size: 42px; }
  .process-steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .process-steps li .step-num { font-size: 42px; }
}
