/* JetBrains Mono Font */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/jetbrains-mono-400.ttf') format('truetype');
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/jetbrains-mono-500.ttf') format('truetype');
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/jetbrains-mono-600.ttf') format('truetype');
}

/* Font Awesome Fonts */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('/fonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url('/fonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('/fonts/fa-brands-400.woff2') format('woff2');
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.blog-content {
    color: #A1A1AA;
    font-size: 1rem;
    line-height: 1.75;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #F4F4F5;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}
.blog-content h1 {
    font-size: 2rem;
}
.blog-content h2 {
    font-size: 1.5rem;
}
.blog-content h3 {
    font-size: 1.25rem;
}
.blog-content p {
    margin: 0 0 1rem;
}
.blog-content a {
    color: #67E8F9;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}
.blog-content ul,
.blog-content ol {
    margin: 0 0 1rem 1.5rem;
}
.blog-content li {
    margin: 0.4rem 0;
}
.blog-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid rgba(103, 232, 249, 0.5);
    background: rgba(39, 39, 42, 0.6);
    color: #E4E4E7;
}
.blog-content code {
    background: rgba(39, 39, 42, 0.7);
    padding: 0.15rem 0.35rem;
    border-radius: 0.35rem;
    font-size: 0.9em;
}
.blog-content pre {
    background: rgba(24, 24, 27, 0.9);
    padding: 1rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1rem 0;
}
.blog-content pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
}
