/* Minimal Tailwind Typography - for .prose */

.prose {
  color: #374151;
  max-width: 65ch;
  line-height: 1.75;
  font-size: 1rem;
}

.prose h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.prose a {
  color: #2563eb;
  text-decoration: underline;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose th,
.prose td {
  border: 1px solid #d1d5db; /* gray-300 */
  padding: 0.75rem;
  text-align: left;
}

.prose thead {
  background-color: #f9fafb; /* gray-50 */
  font-weight: 600;
}