/* Minimal typography styles to approximate Tailwind Typography's .prose for privacy/terms pages */
.prose {
  color: #374151; /* text-gray-700 */
  line-height: 1.75;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: #111827; /* text-gray-900 */
  font-weight: 700;
  line-height: 1.25;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.prose h1 { font-size: 1.875rem; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose p { margin: 0.75em 0; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin: 0.75em 0; }
.prose ol { list-style: decimal; padding-left: 1.25rem; margin: 0.75em 0; }
.prose a { color: #7c3aed; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #c026d3; }
.prose blockquote {
  border-left: 4px solid #e5e7eb; /* gray-200 */
  padding-left: 1rem;
  color: #4b5563; /* gray-600 */
  margin: 1em 0;
}
.prose-sm .prose h1 { font-size: 1.5rem; }
.prose-sm .prose h2 { font-size: 1.25rem; }
.prose-sm .prose h3 { font-size: 1.125rem; }

