/* ==========================================================================
   History Kerala - CloudAlls Pro Archive Stylesheet
   ========================================================================== */

:root {
    --text-main: #27272a;
    --text-muted: #71717a;
    --border-light: #e4e4e7;
    --brand: #047857;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1aa; }

/* Article Formatting (.article-prose) 
   Modeled after modern documentation platforms
*/
.article-prose {
    font-size: 1.05rem; 
    line-height: 1.75;
    color: var(--text-main);
}

.article-prose h1, .article-prose h2, .article-prose h3 {
    font-family: 'Noto Sans Malayalam', 'Inter', sans-serif;
    color: #18181b;
    margin-top: 2em;
    margin-bottom: 0.75em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.article-prose h3 { 
    font-size: 1.25rem; 
    border-bottom: 1px solid var(--border-light); 
    padding-bottom: 0.5rem; 
}

.article-prose p { margin-bottom: 1.5em; }

/* Clean, modern quotes */
.article-prose blockquote {
    border-left: 2px solid var(--text-main);
    padding-left: 1.25rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.article-prose a {
    color: var(--brand);
    text-decoration: underline;
    text-decoration-color: #a7f3d0;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
}

.article-prose a:hover {
    text-decoration-color: var(--brand);
}

.article-prose img {
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin: 2.5rem 0;
}