/* ── ARTICLE LAYOUT ── */
.article-wrap {
  padding: 100px 1.5rem 40px;
}
.article-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 1.25rem;
}
.article-breadcrumb a {
  color: var(--green);
  text-decoration: none;
}
.article-breadcrumb a:hover { text-decoration: underline; }

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-green { background: var(--green-light); color: var(--green); }
.tag-amber { background: var(--amber-light); color: var(--amber); }
.tag-blue  { background: var(--blue-light);  color: var(--blue);  }

.article-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.article-lead {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text3);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

/* Body */
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  line-height: 1.2;
}
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}
.article-body p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.article-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body strong {
  color: var(--text);
  font-weight: 500;
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-body li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
}
.article-body li strong { color: var(--text); font-weight: 500; }

/* Callout boxes */
.callout {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 14px;
  line-height: 1.65;
}
.callout a { font-weight: 500; }
.callout strong { font-weight: 500; }
.callout-green {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  color: var(--green);
}
.callout-green a { color: var(--green); }
.callout-amber {
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  color: var(--amber);
}
.callout-amber a { color: var(--amber); }
.callout-red {
  background: #FCEBEB;
  border-left: 3px solid #C0392B;
  color: #7B1F1F;
}
.callout-red a { color: #C0392B; font-weight: 500; }

/* Comparison table */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
  font-size: 13px;
  overflow-x: auto;
}
.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  gap: 0;
}
.ct-header {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--text3);
}
.ct-header > div, .ct-row > div {
  padding: 10px 12px;
  border-right: 1px solid var(--border);
}
.ct-header > div:last-child, .ct-row > div:last-child { border-right: none; }
.ct-row { border-bottom: 1px solid var(--border); }
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: var(--cream2); }
.ct-featured { background: var(--green-light) !important; }
.ct-featured:hover { background: #d8eddf !important; }
.ct-name { font-weight: 400; color: var(--text); }
.best-for { font-size: 12px; color: var(--text3); }
.badge-pill {
  display: inline-block;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
}
.badge-pill.green { background: var(--green); color: #fff; }
.dot-5 { color: var(--green); letter-spacing: 1px; }
.dot-4 { color: var(--green); opacity: 0.75; letter-spacing: 1px; }
.dot-3 { color: var(--amber); letter-spacing: 1px; }
.dot-2 { color: var(--text3); letter-spacing: 1px; }

/* Timeline */
.timeline {
  position: relative;
  margin: 1.5rem 0;
  padding-left: 28px;
  border-left: 2px solid var(--border2);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-item {
  position: relative;
  padding: 0 0 1.5rem 1.25rem;
}
.tl-dot {
  position: absolute;
  left: -1.55rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--cream);
}
.tl-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.tl-item p {
  font-size: 14px;
  color: var(--text2);
  margin: 0;
  line-height: 1.6;
}

/* Article CTA box */
.article-cta-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}
.acta-text { flex: 1; min-width: 200px; }
.acta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.acta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 300;
  line-height: 1.55;
}
.article-cta-box .cta-phone {
  background: #fff;
  color: var(--green);
  box-shadow: none;
  flex-shrink: 0;
}
.article-cta-box .cta-phone:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.article-cta-box .cta-phone-label { color: rgba(28,74,47,0.6); }
.article-cta-box .cta-phone-num { color: var(--green); }
.article-cta-box .cta-phone-icon { background: var(--green-light); }

/* Article nav */
.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.back-link, .next-link {
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .15s;
}
.back-link:hover, .next-link:hover { opacity: 0.7; }

/* Mobile */
@media (max-width: 600px) {
  .article-wrap { padding: 80px 1rem 32px; }
  .article-body p, .article-body li { font-size: 15px; }
  .article-lead { font-size: 16px; }
  .comparison-table { font-size: 11px; }
  .ct-header, .ct-row { grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr 0.7fr 1.5fr; }
  .ct-header > div, .ct-row > div { padding: 8px 6px; }
  .article-cta-box { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .article-cta-box .cta-phone { width: 100%; justify-content: center; }
  .tl-item { padding-bottom: 1.25rem; }
}
@media (max-width: 440px) {
  .comparison-table { display: none; }
}
