/* Shared font stack */
body {
  font-family: 'Geist', 'Inter', sans-serif;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8f9ff; }
::-webkit-scrollbar-thumb { background: #E2E8F0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }

/* Prose / document body styles */
.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #020617;
  font-weight: 600;
}
.prose p { margin-bottom: 1.25rem; }
.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.prose li { margin-bottom: 0.5rem; }

/* Document container width cap */
.document-container { max-width: 70ch; }

/* Legal section spacing */
.prose-section { margin-bottom: 32px; }
