/* Flint Digital — Prose/typography styles for article content
   Extracted from layouts/app.blade.php inline <style> block
   Load via: <link rel="stylesheet" href="...css/flint-prose.css"> */

        .prose {
            color: #374151;
            font-size: 16px;
            line-height: 1.75;
        }
        .prose h1 { font-size: 2.25em; font-weight: 800; line-height: 1.2; margin: 1.5em 0 0.5em; color: #111827; letter-spacing: -0.02em; }
        .prose h2 { font-size: 1.75em; font-weight: 700; line-height: 1.3; margin: 1.4em 0 0.5em; color: #111827; letter-spacing: -0.01em; }
        .prose h3 { font-size: 1.375em; font-weight: 600; line-height: 1.4; margin: 1.3em 0 0.5em; color: #111827; }
        .prose h4 { font-size: 1.125em; font-weight: 600; line-height: 1.45; margin: 1.2em 0 0.4em; color: #111827; }
        .prose h5 { font-size: 1em; font-weight: 600; line-height: 1.5; margin: 1.1em 0 0.4em; color: #111827; }
        .prose h6 { font-size: 0.875em; font-weight: 600; line-height: 1.5; margin: 1em 0 0.4em; color: #111827; }
        .prose p { margin: 0 0 1.25em; }
        .prose a { color: var(--color-primary, #4231d0); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
        .prose a:hover { color: #2f1fb0; }
        .prose strong { font-weight: 700; color: #111827; }
        .prose em { font-style: italic; }
        .prose ul { list-style-type: disc; padding-left: 1.625em; margin: 0 0 1.25em; }
        .prose ol { list-style-type: decimal; padding-left: 1.625em; margin: 0 0 1.25em; }
        .prose li { margin: 0.25em 0; }
        .prose li > p { margin: 0.25em 0; }
        .prose blockquote {
            border-left: 4px solid var(--color-primary, #4231d0);
            padding: 0.75em 1.25em;
            margin: 0 0 1.5em;
            background: #f4f2ff;
            border-radius: 0 12px 12px 0;
            color: #4b5563;
            font-style: italic;
        }
        .prose blockquote p:last-child { margin-bottom: 0; }
        .prose img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5em 0; }
        .prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; overflow: hidden; border-radius: 12px; }
        .prose table th, .prose table td { border: 1px solid #d1d5db; padding: 10px 14px; text-align: left; font-size: 14px; }
        .prose table th { background: #f3f4f6; font-weight: 600; color: #111827; }
        .prose table td { background: #fff; }
        .prose code {
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            font-size: 0.875em;
            background: #f1f5f9;
            padding: 2px 6px;
            border-radius: 4px;
            color: #dc2626;
            font-weight: 500;
        }
        .prose pre {
            background: #0f172a;
            color: #e2e8f0;
            padding: 1.25em 1.5em;
            border-radius: 12px;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            font-size: 0.875em;
            line-height: 1.6;
            margin: 0 0 1.5em;
            overflow-x: auto;
        }
        .prose pre code {
            background: none;
            padding: 0;
            color: inherit;
            font-size: inherit;
            font-weight: 400;
        }
        .prose hr { border: none; border-top: 2px solid #e5e7eb; margin: 2em 0; }
        .prose ul > li::marker { color: var(--color-primary, #4231d0); }
        .prose ol > li::marker { color: var(--color-primary, #4231d0); font-weight: 600; }
        @media (max-width: 768px) {
            .prose { font-size: 15px; }
            .prose h1 { font-size: 1.75em; }
            .prose h2 { font-size: 1.4em; }
            .prose table { display: block; overflow-x: auto; white-space: nowrap; }
        }
