/* Long-form service and resource pages. Same visual language as legal.css,
   under its own names so a services page is not styled by "legal". */

.content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.content-breadcrumb { margin: 0 0 20px; }
.content-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--text-subtle);
}
.content-breadcrumb li + li::before { content: '/'; margin-right: 6px; color: var(--border); }
.content-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.content-breadcrumb a:hover { color: var(--text); }

.content-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 16px;
}
.content-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 20px;
}
/* The direct-answer opener. Sits above the fold, larger than body copy. */
.content-lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.content-lede strong { color: var(--text); font-weight: 600; }
.content-meta {
  font-size: 13px;
  color: var(--text-subtle);
  margin: 0 0 56px;
}

.content-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 64px;
}
.content-toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: 0 0 14px;
}
.content-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.content-toc li { font-size: 13px; color: var(--text-muted); }
.content-toc a { color: var(--text-muted); text-decoration: none; }
.content-toc a:hover { color: var(--text); }

.content-section {
  margin-bottom: 56px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  scroll-margin-top: 100px;
}
.content-section:first-of-type { border-top: none; padding-top: 0; }
.content-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 20px;
}
.content-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 8px;
  letter-spacing: -0.01em;
}
.content-section p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.content-section ul,
.content-section ol {
  padding-left: 22px;
  margin: 0 0 14px;
}
.content-section li {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.content-section a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.content-section strong { color: var(--text); font-weight: 600; }

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 13.5px;
}
.content-table th,
.content-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
  line-height: 1.6;
}
.content-table th { color: var(--text); font-weight: 700; background: var(--surface); }

/* Caveats and "not legal advice" notes. Quieter than body copy, still legible. */
.content-note {
  border-left: 2px solid var(--border);
  padding: 4px 0 4px 14px;
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-subtle);
}

.content-faq { margin-bottom: 20px; }
.content-faq h3 { margin-top: 0; }

.content-cta-alt {
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 0;
}
.content-cta-alt a { color: inherit; }

.content-related {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-subtle);
}
.content-related a { color: var(--text-muted); }

@media (max-width: 640px) {
  .content-page { padding: 110px 20px 64px; }
  .content-toc ol { grid-template-columns: 1fr; }
  .content-table { display: block; overflow-x: auto; }
}
