@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Outlined');

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: #1E293B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Merriweather', serif;
}

/* Elegant Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F8FAFC; 
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1; 
    border-radius: 5px;
    border: 2px solid #F8FAFC;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8; 
}

/* Article Styling */
.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    color: #334155;
}
.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0F766E;
    font-weight: 700;
}

/* Blog article: restore margin and link styles inside article cards */
.blog-article p {
    margin-bottom: 1rem;
}
.blog-article p:last-child {
    margin-bottom: 0;
}
.blog-article h1, .blog-article h2, .blog-article h3, .blog-article h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-article h1:first-child, .blog-article h2:first-child, .blog-article h3:first-child, .blog-article h4:first-child {
    margin-top: 0;
}
.blog-article a {
    color: #0F766E;
    text-decoration: none;
}
.blog-article a:hover {
    color: #0D9488;
    text-decoration: underline;
}
.blog-article .article-content a {
    color: #0F766E;
}
.blog-article .article-content a:hover {
    color: #0D9488;
    text-decoration: underline;
}
