/* Article typography — dark mode aware, prose-like styling */
:root {
    --code-bg: #f1f5f9;
    --code-text: #1e293b;
}

[data-theme="dark"] {
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
}

/* Article content styling */
[data-content-type="article"] h1 { font-size: 2rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; }
[data-content-type="article"] h2 { font-size: 1.5rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
[data-content-type="article"] h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
[data-content-type="article"] p { line-height: 1.8; margin-bottom: 1rem; }
[data-content-type="article"] ul, [data-content-type="article"] ol { margin-bottom: 1rem; padding-left: 1.5rem; }
[data-content-type="article"] li { margin-bottom: 0.25rem; line-height: 1.7; }
[data-content-type="article"] blockquote {
    border-left: 4px solid var(--accent, #3b82f6);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background: var(--bg-secondary);
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--text-secondary);
}
[data-content-type="article"] pre {
    background: var(--code-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}
[data-content-type="article"] code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875em;
    padding: 0.15em 0.3em;
    border-radius: 0.25rem;
    background: var(--code-bg);
    color: var(--code-text);
}
[data-content-type="article"] pre code {
    padding: 0;
    background: transparent;
    font-size: inherit;
}
[data-content-type="article"] img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem auto;
}
[data-content-type="article"] table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
[data-content-type="article"] th, [data-content-type="article"] td {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}
[data-content-type="article"] th {
    background: var(--bg-secondary);
    font-weight: 600;
}
[data-content-type="article"] hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}
[data-content-type="article"] a {
    color: var(--accent, #3b82f6);
    text-decoration: underline;
    text-underline-offset: 2px;
}
[data-content-type="article"] a:hover {
    opacity: 0.8;
}

/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth scroll for heading anchors */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--accent, #3b82f6);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--accent, #3b82f6);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}
