.breadcrumb {
  max-width: 800px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--plum); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); font-size: 15px; }

.article-outer { padding: 0 24px 80px; }
.article-inner { max-width: 800px; margin: 0 auto; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.meta-tag {
  background: var(--plum-light);
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}
.meta-detail { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.editorial-note {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.editorial-note strong { color: var(--text); }

.prose { font-size: 16px; color: var(--muted); line-height: 1.8; }
.prose p { margin-bottom: 1.4rem; }
.prose strong { font-weight: 700; color: var(--text); }
.prose a { color: var(--plum); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #5B21B6; }
.prose h2 {
  font-family: 'Fredoka', cursive;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin: 3rem 0 1rem;
  line-height: 1.2;
}
.prose h3 {
  font-family: 'Fredoka', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 .65rem;
  line-height: 1.3;
}
.prose ul, .prose ol { margin: 0 0 1.5rem 1.35rem; }
.prose li { margin-bottom: .55rem; padding-left: .25rem; }
.lead-para {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  border-left: 4px solid var(--plum);
  padding-left: 20px;
  margin-bottom: 2rem;
  font-weight: 500;
}
.callout {
  background: var(--plum-light);
  border-left: 4px solid var(--plum);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin: 2rem 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.callout strong { color: var(--plum); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 1.5rem 0 2.5rem;
}
.article-card { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 18px; }
.article-card-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.article-card-title { font-family: 'Fredoka', cursive; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.article-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

.schedule-table, .compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0 2.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-size: 14px;
}
.schedule-table th, .compare-table th {
  background: var(--dark);
  color: white;
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
}
.schedule-table td, .compare-table td { padding: 12px 14px; border-top: 1px solid var(--border); vertical-align: top; }
.schedule-table tr:nth-child(even) td, .compare-table tr:nth-child(even) td { background: #F8FAFC; }

.step-list { list-style: none !important; margin: 1.5rem 0 2.5rem !important; padding: 0; counter-reset: article-step; }
.step-list li {
  counter-increment: article-step;
  position: relative;
  padding: 0 0 1.5rem 52px;
  margin: 0;
  min-height: 44px;
}
.step-list li::before {
  content: counter(article-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Fredoka', cursive;
  font-weight: 700;
}
.step-list strong { display: block; margin-bottom: 3px; }

.tpt-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 1.5rem 0 2.5rem; }
.tpt-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.tpt-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); border-color: #F97316; }
.tpt-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.tpt-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.tpt-card-title { font-family: 'Fredoka', cursive; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.35; }
.tpt-card-grade { font-size: 11px; color: #6B7280; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.tpt-card-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
.tpt-card-btn { display: block; margin: 10px 16px 14px; padding: 9px; background: linear-gradient(135deg,#F97316,#EF4444); color: white; text-align: center; border-radius: 10px; font-size: 13px; font-weight: 700; }

.faq-list { margin: 0 0 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-family: 'Fredoka', cursive; font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }

.cta-block { background: var(--dark); border-radius: 20px; padding: 40px 32px; text-align: center; margin: 3rem 0 1rem; }
.cta-block h2 { font-family: 'Fredoka', cursive; font-size: clamp(22px,4vw,30px); font-weight: 700; color: white; margin: 0 0 10px; }
.cta-block p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.cta-btn { display: inline-block; background: var(--plum); color: white !important; font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: 50px; text-decoration: none !important; transition: transform .15s; }
.cta-btn:hover { transform: translateY(-2px); }

.related-section { margin: 3rem 0 1rem; }
.related-heading { font-family: 'Fredoka', cursive; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.related-card { background: white; border: 2px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: all .2s; display: flex; flex-direction: column; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); border-color: var(--plum); }
.related-thumb { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.related-body { padding: 14px 16px; flex: 1; }
.related-title { font-family: 'Fredoka', cursive; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.related-excerpt { font-size: 12px; color: var(--muted); line-height: 1.5; }

@media (max-width: 700px) {
  .article-outer { padding: 0 16px 60px; }
  .article-meta { gap: 10px; }
  .related-grid { grid-template-columns: 1fr; }
  .schedule-table, .compare-table { display: block; overflow-x: auto; }
  .cta-block { padding: 28px 20px; }
}
