/* ── Legal pages (Privacy Policy, Terms of Use) ───────────────── */

body {
  overflow: auto;
}

.legal-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.legal-back {
  display: inline-block;
  font-size: 11px;
  color: var(--text-caption);
  letter-spacing: 0.3px;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}
.legal-back:hover {
  color: var(--brand-blue);
}

.legal-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-hero);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 11px;
  color: var(--text-caption);
  margin-bottom: 32px;
}

.legal-intro {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 36px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
}

.legal-section li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.legal-section li::before {
  content: "\2022";
  color: var(--text-caption);
  position: absolute;
  left: 0;
}

.legal-section a {
  color: var(--brand-blue);
  transition: opacity 0.2s ease;
}
.legal-section a:hover {
  opacity: 0.8;
}

.legal-section strong {
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .legal-page {
    padding: 40px 24px 24px;
  }

  .legal-title {
    font-size: 20px;
  }
}
