/* Blog content styles */
.blog-content {
    line-height: 1.7;
    font-size: 1.1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1, 
.blog-content h2, 
.blog-content h3, 
.blog-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a6668;
}

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

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: #2a6668;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.blog-content a:hover {
    border-bottom-color: #2a6668;
}

/* Image styling */
.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Image container for better content flow */
.blog-content p:has(img) {
    text-align: center;
    margin: 2.5rem 0;
}

/* Blockquote styling */
.blog-content blockquote {
    border-left: 3px solid #2a6668;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2rem 0;
    color: #555;
    font-style: italic;
    background-color: #f9f9f9;
}

/* Nested blockquotes */
.blog-content blockquote blockquote {
    border-left-color: #e74c3c;
    margin: 1rem 0;
    background-color: #fff;
}

/* Code blocks */
.blog-content pre {
    background-color: #f6f8fa;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

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

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

/* Horizontal rule */
.blog-content hr {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin: 2rem 0;
} 