/* Blog Content Styles
-------------------------------------------------- */
.blog-content {
    line-height: 1.6;
    color: #374151;
}

/* Headings */
.blog-content h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 1em 0 0.5em;
    color: #111827;
}

.blog-content h2 {
    font-size: 2em;
    font-weight: bold;
    margin: 1em 0 0.5em;
    color: #111827;
}

.blog-content h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 1em 0 0.5em;
    color: #111827;
}

.blog-content h4 {
    font-size: 1.25em;
    font-weight: bold;
    margin: 1em 0 0.5em;
    color: #111827;
}

/* Text Elements */
.blog-content p {
    margin: 1em 0;
}

.blog-content a {
    color: #2563eb;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #1d4ed8;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

/* Blockquotes */
.blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    background-color: #f3f4f6;
}

/* Code Blocks */
.blog-content pre {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
    font-family: 'Courier New', Courier, monospace;
}

/* Images */
.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

/* Font Size Utilities */
.blog-content .text-xs { font-size: 0.75rem; }
.blog-content .text-sm { font-size: 0.875rem; }
.blog-content .text-base { font-size: 1rem; }
.blog-content .text-lg { font-size: 1.125rem; }
.blog-content .text-xl { font-size: 1.25rem; }
.blog-content .text-2xl { font-size: 1.5rem; }
