/* ══════════════════════════════════════════
   RESOURCES: LEGAL — CommunityDX
   Page-specific styles only. Shared reset,
   buttons, header, footer, etc. are in layout.css.
   ══════════════════════════════════════════ */

.legal-section {
  padding: var(--space-4xl);
  background: transparent;
}

.legal-section__title {
  font-family: var(--font-family);
  font-size: var(--font-size-section-title);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.legal-section__text {
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-dark);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  .legal-section {
    padding: var(--space-2xl) 20px;
  }
}
