/* ============================================================
   MVO Answers — clean editorial / knowledge-article styling
   Shared across all /answers/ pages. Playfair headings, DM Sans body.
   ============================================================ */

:root {
  --ink: #1a1a1a;
  --ink-soft: #3d3a37;
  --muted: #6b645e;
  --accent: #F97316;
  --accent-soft: #FFF7ED;
  --border: #e7e3e0;
  --bg: #ffffff;
  --max: 760px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Top bar: small logo linking home ---- */
.site-head {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.site-head .wrap { max-width: var(--max); margin: 0 auto; }
.site-head a { display: inline-flex; align-items: center; }
.site-head img { height: 26px; width: auto; display: block; }

/* ---- Article container ---- */
.article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.updated {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.article h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--ink);
  margin-bottom: 22px;
}

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.lede + .lede { margin-top: 14px; }

.article h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.3px;
  color: var(--ink);
  margin: 44px 0 16px;
}

.article h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 24px 0 6px;
}

.article p { margin: 0 0 16px; }

.article ul, .article ol { margin: 0 0 16px; padding-left: 22px; }
.article li { margin-bottom: 8px; }

.article strong { font-weight: 600; color: var(--ink); }

/* ---- Bottom-line summary box (quick extraction) ---- */
.bottom-line {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 28px 0;
}
.bottom-line .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 6px;
}
.bottom-line p { margin: 0; font-size: 16px; color: var(--ink-soft); }

/* ---- Comparison tables ---- */
.table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 640px;
}
thead th {
  text-align: left;
  font-weight: 600;
  background: #faf9f8;
  color: var(--ink);
  padding: 12px 14px;
  border-bottom: 2px solid var(--border);
}
tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  vertical-align: top;
}
tbody tr:nth-child(odd) td { background: #fcfbfa; }
tbody td:first-child { font-weight: 600; color: var(--ink); }
.table-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ---- FAQ ---- */
.faq-q { font-weight: 600; color: var(--ink); margin: 22px 0 4px; font-size: 17.5px; }
.faq-a { margin: 0 0 8px; color: var(--ink-soft); }

/* ---- Related questions (internal links / topic cluster) ---- */
.related {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.related h2 { font-size: 22px; margin-top: 0; }
.related ul { list-style: none; padding: 0; }
.related li { margin-bottom: 10px; }

/* ---- Subtle single bottom CTA ---- */
.cta {
  margin-top: 44px;
  padding: 22px 24px;
  background: #faf9f8;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15.5px;
  color: var(--muted);
}
.cta strong { color: var(--ink); }

/* ---- Footer ---- */
.site-foot {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  font-size: 13px;
  color: var(--muted);
}
.site-foot .wrap { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-foot a { color: var(--muted); }

@media (max-width: 600px) {
  .article h1 { font-size: 30px; }
  .article h2 { font-size: 22px; }
  body { font-size: 16px; }
  .lede { font-size: 17px; }
}
