/* ════════════════════════════════════════
   LEGAL / LONG-FORM CONTENT PAGES
   Shared by terms.html, privacy.html,
   and reusable for any future content page.
   ════════════════════════════════════════ */

.content-hero {
  padding: 8.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.content-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-1);
}

.content-hero__meta {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 0.5rem;
}

/* Content body — shared with blog articles */
.content {
  padding: 3rem 0 5rem;
}

.content__body {
  max-width: 680px;
}

.content__body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-1);
  margin-top: 2.75rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
}

.content__body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
}

.content__body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.content__body ul,
.content__body ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.content__body li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}

.content__body strong {
  color: var(--text-1);
  font-weight: 600;
}

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

.content__body a:hover {
  color: var(--accent-hover);
}

@media (max-width: 640px) {
  .content-hero { padding: 6.5rem 0 2rem; }
}
