/* ---------- article page (compare.html) ---------- */

.article-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.article-h1 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.article-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 40px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 14px;
  letter-spacing: -0.005em;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}

.article-body p.article-muted {
  color: var(--text-muted);
  font-size: 14px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-body li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-body strong { font-weight: 700; }

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* comparison table */
.article-table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.article-table th,
.article-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.article-table th {
  background: var(--surface-sunken);
  font-weight: 700;
  white-space: nowrap;
}

.article-table tbody tr:last-child td { border-bottom: none; }

.article-table td.is-haven-col,
.article-table th.is-haven-col {
  background: var(--accent-soft);
  font-weight: 600;
}

.article-check { color: var(--success); font-weight: 700; }
.article-cross { color: var(--text-faint); }

/* callout boxes */
.article-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 0 0 28px;
}
.article-callout p:last-child { margin-bottom: 0; }

.article-callout-honest {
  border-left-color: var(--warn);
}

.article-cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.article-cta h2 {
  margin-top: 0 !important;
}
.article-cta p {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 20px !important;
}

.article-footnote {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-faint);
}

@media (max-width: 640px) {
  .article-main { padding: 40px 18px 60px; }
  .article-h1 { font-size: 30px; }
  .article-lede { font-size: 16px; }
}
