/* ArtDrop long-form guide styles. Layered on top of setup.css for the
   /help/mobile article (and any future long-form guide). Reuses the setup
   hero, .steps, and .callout components; adds article prose, a table of
   contents, a comparison table, and an FAQ block. All design tokens come
   from site.css (:root), same as setup.css. No inline styles (CSP). */

.guide-body { max-width: 760px; }

/* Last updated / freshness line */
.guide-updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 36px;
}
.guide-updated strong { color: var(--white); font-weight: 500; }

/* Table of contents */
.guide-toc {
  border: 1px solid var(--border-bright);
  background: var(--bg2);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 0 0 52px;
}
.guide-toc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.guide-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 36px;
}
.guide-toc li { padding: 5px 0; break-inside: avoid; }
.guide-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}
.guide-toc a:hover { color: var(--lime); }

/* Article sections */
.guide-section { margin: 0 0 52px; scroll-margin-top: 96px; }
.guide-section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.guide-body h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.guide-body h3 {
  font-family: var(--sans);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 34px 0 12px;
}
.guide-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}
.guide-body p strong { color: var(--white); font-weight: 600; }
.guide-body a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px dotted rgba(191, 255, 94, 0.4);
}
.guide-body a:hover { border-bottom-color: var(--lime); }
.guide-body em { font-style: italic; color: var(--white); }

/* Answer-first lead paragraph under each H2 */
.guide-answer {
  font-size: 17px;
  color: var(--white);
  line-height: 1.7;
  border-left: 2px solid var(--lime);
  padding-left: 18px;
  margin: 0 0 20px;
}

/* Bulleted lists */
.guide-list { list-style: none; padding: 0; margin: 0 0 20px; }
.guide-list li {
  padding: 7px 0 7px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  position: relative;
}
.guide-list li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--lime);
  font-family: var(--mono);
}
.guide-list li strong { color: var(--white); }

/* Checklist / callout box (own the lime border) */
.guide-checklist {
  border: 1px solid var(--lime);
  background: rgba(191, 255, 94, 0.04);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 0 0 32px;
}
.guide-checklist .guide-section-label { margin-bottom: 14px; }

/* Comparison table (scrolls inside its own container on narrow screens) */
.guide-table-wrap {
  overflow-x: auto;
  margin: 0 0 22px;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.guide-table th,
.guide-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
  line-height: 1.5;
}
.guide-table thead th {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--bg2);
}
.guide-table tbody th { color: var(--white); font-weight: 600; }
.guide-table td.col-artdrop { color: var(--lime); font-weight: 600; }
.guide-table tr:last-child td,
.guide-table tr:last-child th { border-bottom: none; }

/* FAQ */
.guide-faq-item { border-top: 1px solid var(--border); padding: 24px 0; }
.guide-faq-item:last-child { border-bottom: 1px solid var(--border); }
.guide-faq-q {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}
.guide-faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }
.guide-faq-a a { color: var(--lime); text-decoration: none; }
.guide-faq-a a:hover { text-decoration: underline; }

/* Closing CTA (sibling of .guide-body so it does not inherit the link underline) */
.guide-cta {
  border: 1px solid var(--lime);
  background: rgba(191, 255, 94, 0.05);
  border-radius: 10px;
  padding: 44px 36px;
  margin: 8px 0 0;
  text-align: center;
}
.guide-cta h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 14px;
}
.guide-cta p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 26px;
}
.guide-cta-btn {
  display: inline-block;
  background: var(--lime);
  color: #0a0a0a;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.guide-cta-btn:hover { opacity: 0.9; }
.guide-cta-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin: 18px 0 0;
}

@media (max-width: 640px) {
  .guide-toc ol { columns: 1; }
  .guide-body h2 { font-size: 24px; }
  .guide-answer { font-size: 16px; }
  .guide-checklist { padding: 22px 20px; }
  .guide-cta { padding: 32px 22px; }
}
