/* === BLOG CONTENT THEME STYLE === */
.blog-content {
    max-width: 760px;
    /* margin: 0 auto; */
    color: #101928;
    font-family: Inter, sans-serif;
    line-height: 1.75;
    font-size: 1.08rem;
}

[data-theme="winter"] .blog-content {
    color: #383d42;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    color: #3b444d;
}

.blog-content h1 {
    font-size: 2.2rem;
}

.blog-content h2 {
    font-size: 1.6rem;
}

.blog-content h3 {
    font-size: 1.2rem;
}

.blog-content p {
    margin: 1rem 0;
}

.blog-content strong {
    font-weight: 700;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin: 0.3rem 0;
}

/* === IMAGES === */
.blog-content img {
    width: 100%;
    border-radius: 14px;
    margin: 1.5rem 0;
}

/* === BLOCKQUOTE === */
.blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
}
.blog-content pre {
    background: #f5f5f5;
    padding: 1em;
    overflow-x: auto;
    border-radius: 0.5em;
}
.blog-content code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

/* === DARK MODE SUPPORT === */
html.dark .blog-content,
[data-theme="dark"] .blog-content {
    color: #d1d5db;
}

html.dark .blog-content h1,
html.dark .blog-content h2,
html.dark .blog-content h3 {
    color: #f9fafb;
}

html.dark .blog-content blockquote {
    border-left-color: #4b5563;
    color: #9ca3af;
}
