/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@300;500;700&display=swap');

/* Global overrides */
body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f1729;
}
::-webkit-scrollbar-thumb {
    background: #38bdf8;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0ea5e9;
}

/* Content Typography for Articles */
.prose h2, .prose h3 {
    color: #fff;
    margin-top: 2em;
}
.prose p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #cbd5e1;
}
.prose blockquote {
    border-left-color: #f59e0b;
    color: #f1f5f9;
}
.prose a {
    color: #38bdf8;
    text-decoration: underline;
}
