/* markdown.css - Simple, clean prose styling for .prose container (no CSS variables) */

.prose {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .prose h1,
  .prose h2,
  .prose h3,
  .prose h4,
  .prose h5,
  .prose h6 {
    margin: 2.25rem 0 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
  }
  
  .prose h1 { font-size: 2.2rem; }
  .prose h2 { font-size: 1.8rem; }
  .prose h3 { font-size: 1.5rem; }
  .prose h4 { font-size: 1.3rem; }
  .prose h5 { font-size: 1.1rem; }
  .prose h6 { font-size: 1rem; }
  
  .prose p {
    margin: 0 0 1.5rem;
  }
  
  .prose a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }
  
  .prose a:hover {
    color: #1d4ed8;
  }
  
  .prose ul,
  .prose ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
  }
  .prose ul {
    list-style-type: disc;
  }
  .prose ol {
    list-style-type: decimal;
  }
  
  .prose li {
    margin-bottom: 0.35rem;
  }
  
  .prose li > ul,
  .prose li > ol {
    margin: 0.35rem 0;
  }
  
  .prose blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 4px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
  }
  
  .prose code {
    font-family: "SF Mono", Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 0.925em;
    background: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 4px;
  }
  
  .prose pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.925rem;
    line-height: 1.5;
    margin: 1.5rem 0;
  }
  
  .prose pre code {
    background: none;
    padding: 0;
    font-size: inherit;
  }
  
  .prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.25rem 0;
  }
  
  .prose img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5rem 0;
  }
  
  .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
  }
  
  .prose th,
  .prose td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .prose th {
    background: #f9fafb;
    font-weight: 600;
  }
  
  .prose tr:last-child td {
    border-bottom: none;
  }
  
  /* Mobile */
  @media (max-width: 640px) {
    .prose {
      padding: 1rem;
      font-size: 1rem;
    }
    .prose h1 { font-size: 1.9rem; }
    .prose h2 { font-size: 1.6rem; }
  }