/* ===== Guide article shared styles ===== */
.page-header {
  padding: 140px 24px 40px;
  background: var(--bg-warm);
  text-align: center;
}
.page-header .label {
  display: inline-block;
  font-family: var(--round);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-pop);
  background: rgba(232, 116, 140, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.page-header .pub {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}
.article .lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 36px;
  color: var(--text);
}
.toc {
  background: var(--bg);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0 48px;
}
.toc-title {
  font-family: var(--round);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.toc ol {
  padding-left: 20px;
  list-style: decimal;
}
.toc li {
  margin: 6px 0;
  line-height: 1.7;
}
.toc a {
  color: var(--text);
  font-size: 14px;
}
.toc a:hover { color: var(--accent-pop); }

.article h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 500;
  margin: 56px 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-pop);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.article h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin: 28px 0 10px;
  color: var(--accent-dark);
}
.article p {
  line-height: 2;
  margin-bottom: 16px;
}
.article ul, .article ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.article li {
  line-height: 1.9;
  margin: 4px 0;
}
.article .callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent-olive);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
  font-size: 14px;
  line-height: 1.9;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 24px;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid rgba(184, 169, 154, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
}
.price-card .price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--accent-pop);
  margin-bottom: 6px;
}
.price-card .who {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.faq-block {
  margin-top: 48px;
  padding: 28px 24px;
  background: var(--bg);
  border-radius: 14px;
}
.faq-block h2 {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(184, 169, 154, 0.25);
  padding: 14px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.6;
}
.faq-a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.cta-block {
  margin-top: 56px;
  padding: 36px 28px;
  background: linear-gradient(135deg, #fff5f7, #fdf9f4);
  border-radius: 16px;
  text-align: center;
}
.cta-block h2 {
  border-left: none;
  padding-left: 0;
  margin: 0 0 12px;
}
.cta-block p {
  color: var(--text-light);
  margin-bottom: 22px;
}
.cta-block .btn {
  margin: 6px 4px;
}
.breadcrumbs {
  max-width: 720px;
  margin: 12px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent-pop); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: rgba(247, 243, 238, 0.4);
  backdrop-filter: blur(12px);
  z-index: 150;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #2c2825;
  text-decoration: none;
}

.related-articles {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
.related-articles h2 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-olive);
  padding-left: 12px;
  font-weight: 500;
}
.related-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.related-list a {
  display: block;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  transition: background 0.2s;
}
.related-list a:hover { background: var(--bg-warm); color: var(--accent-pop); }

@media (max-width: 768px) {
  .page-header { padding: 120px 20px 32px; }
  .article { padding: 36px 20px 60px; }
  .article h2 { margin-top: 44px; }
  .related-list { grid-template-columns: 1fr; }
}
