/* Article content styling (Tailwind prose equivalent) */
.prose-content {
  color: #374151;
  line-height: 1.75;
  font-size: 1rem;
}
.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4 {
  color: #111827;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}
.prose-content h1 { font-size: 1.5rem; }
.prose-content h2 { font-size: 1.25rem; }
.prose-content h3 { font-size: 1.1rem; }
.prose-content p  { margin: 0.75em 0; }
.prose-content ul,
.prose-content ol {
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.prose-content ul { list-style-type: disc; }
.prose-content ol { list-style-type: decimal; }
.prose-content li { margin: 0.25em 0; }
.prose-content a  { color: #4f46e5; text-decoration: underline; }
.prose-content a:hover { color: #4338ca; }
.prose-content strong { font-weight: 700; color: #111827; }
.prose-content em { font-style: italic; }
.prose-content img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1em auto;
  display: block;
}
.prose-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.9rem;
}
.prose-content th,
.prose-content td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.prose-content th {
  background: #f9fafb;
  font-weight: 600;
}
.prose-content blockquote {
  border-left: 4px solid #6366f1;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #6b7280;
  background: #f9fafb;
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose-content pre,
.prose-content code {
  background: #f3f4f6;
  border-radius: 0.25rem;
  font-family: ui-monospace, monospace;
  font-size: 0.875em;
}
.prose-content pre  { padding: 1em; overflow-x: auto; }
.prose-content code { padding: 0.125em 0.25em; }
