/* Blog Post Styling */
.blog-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #1f2937;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.blog-content h2:first-of-type {
    margin-top: 0;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.8;
}

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

.blog-content li {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #374151;
    line-height: 1.7;
}

.blog-content li strong {
    color: #111827;
    font-weight: 600;
}

.blog-content strong {
    color: #111827;
    font-weight: 600;
}

.blog-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #2563eb;
}

.blog-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4b5563;
}

.blog-content code {
    background-color: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #dc2626;
    font-family: 'Courier New', monospace;
}

.blog-content pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 2rem;
}

.blog-content pre code {
    background-color: transparent;
    color: #f9fafb;
    padding: 0;
}

/* CTA Box Styling */
.blog-content .bg-blue-50,
.blog-content .bg-green-50,
.blog-content .bg-orange-50,
.blog-content .bg-purple-50,
.blog-content .bg-red-50,
.blog-content .bg-yellow-50,
.blog-content .bg-teal-50,
.blog-content .bg-cyan-50,
.blog-content .bg-indigo-50,
.blog-content .bg-emerald-50 {
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

.blog-content .bg-blue-50 h3,
.blog-content .bg-green-50 h3,
.blog-content .bg-orange-50 h3,
.blog-content .bg-purple-50 h3,
.blog-content .bg-red-50 h3,
.blog-content .bg-yellow-50 h3,
.blog-content .bg-teal-50 h3,
.blog-content .bg-cyan-50 h3,
.blog-content .bg-indigo-50 h3,
.blog-content .bg-emerald-50 h3 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 1.75rem;
    }
    
    .blog-content h3 {
        font-size: 1.35rem;
    }
    
    .blog-content h4 {
        font-size: 1.15rem;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 1rem;
    }
}

