/* Titres */
.prose h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}
.prose h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Paragraphes */
.prose p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Listes */
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose li {
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

/* Tableaux */
.prose table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
.prose th,
.prose td {
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.prose th {
  background-color: #f3f4f6;
  font-weight: 600;
}

/* Code */
.prose code {
  background-color: #f3f4f6;
  padding: 0.1rem 0.3rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: monospace;
}
.prose pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.prose pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Citations */
.prose blockquote {
  border-left: 4px solid #d1d5db;
  padding-left: 1rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* Liens */
.prose a {
  color: #3b82f6;
  text-decoration: underline;
}
.prose a:hover {
  color: #1d4ed8;
}

/* Séparateur */
.prose hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

/* Gras / italique */
.prose strong {
  font-weight: 700;
}
.prose em {
  font-style: italic;
}
