/* ═══════════════════════════════════════════════
   LEGAL PAGES — Shared styles
   Used by: accessibility.html, terms.html, privacy.html
   ═══════════════════════════════════════════════ */

.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 48px;
}

.legal-heading {
  font-family: var(--bodoni);
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin: 0 0 48px 0;
  line-height: 1.15;
  font-optical-sizing: auto;
}

.legal-body {
  font-family: var(--poppins);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin: 0 0 24px 0;
  letter-spacing: 0.15px;
}

.legal-body:last-of-type {
  margin-bottom: 48px;
}

.legal-brand {
  font-family: var(--poppins);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.25px;
}

.legal-link {
  color: var(--mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5px;
  transition: color 0.2s ease;
  font-weight: 400;
}

.legal-link:hover {
  color: var(--dark);
}

.legal-updated {
  font-family: var(--poppins);
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.15px;
}

.legal-updated em {
  font-style: italic;
}

.ph-icon {
  color: var(--icon-mid);
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .legal-content {
    padding: 60px 30px;
  }

  .legal-heading {
    font-size: 2.5rem;
    margin: 0 0 36px 0;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 40px 20px;
  }

  .legal-heading {
    font-size: 2rem;
    margin: 0 0 28px 0;
  }

  .legal-body {
    font-size: 0.875rem;
  }
}
