/* ============================================================
   LEGAL PAGE STYLES — BANZ TECHNOLOGIES
   Typography and Readability Optimized for Legal Documents
   ============================================================ */

.legal-hero {
  padding-top: 180px; /* Clears fixed navigation */
  padding-bottom: 80px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.legal-hero__content {
  max-width: 800px;
  margin-inline: auto;
}

.legal-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.legal-hero__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-section {
  padding-block: 100px;
}

.legal-section__content {
  max-width: 800px;
  margin-inline: auto;
  color: var(--text-secondary);
  line-height: 1.85;
  text-align: justify; /* Consistent with premium editorial style */
}

.legal-section__content h2,
.legal-section__content h3 {
  color: var(--text-primary);
  margin-top: 64px; /* Increased padding before headings */
  margin-bottom: 28px;
}

.legal-section__content h2 { font-size: 1.75rem; }
.legal-section__content h3 { font-size: 1.25rem; }

.legal-section__content p {
  margin-bottom: 28px; /* Increased gap between paragraphs */
}

.legal-section__content ul,
.legal-section__content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-section__content li {
  margin-bottom: 12px;
}

.legal-section__content strong {
  color: var(--text-primary);
}

.legal-section__content a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--dur-fast) ease;
}

.legal-section__content a:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .legal-hero {
    padding-top: 140px;
    padding-bottom: 40px;
  }
}
