/* css/prose.css — Styles pour le contenu Markdown rendu en HTML */
/* Utilise les tokens du design system APLSPK */

.prose-content h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #004371;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #004371;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.prose-content h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1c1c17;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.prose-content p {
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.prose-content strong {
  font-weight: 600;
}

.prose-content a {
  color: #004371;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-content a:hover {
  opacity: 0.8;
}

.prose-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-content ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-content li {
  margin-bottom: 0.25rem;
  line-height: 1.75;
}

.prose-content blockquote {
  border-left: 3px solid #c2c7d0;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #42474f;
  font-style: italic;
}

.prose-content code {
  background: #e5e2da;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.prose-content pre {
  background: #e5e2da;
  padding: 1rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin-bottom: 0.75rem;
}

.prose-content pre code {
  background: none;
  padding: 0;
}

.prose-content > *:first-child {
  margin-top: 0;
}

.prose-content > *:last-child {
  margin-bottom: 0;
}
