/* Blog Post Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.blog-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.blog-header h1 {
    font-size: 2.0rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
}

.blog-content {
    font-size: 1.1rem;
}

.blog-image {
    text-align: center;
    margin: 20px 0;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-text {
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 1.5em;
}

.blog-text h1,
.blog-text h2,
.blog-text h3,
.blog-text h4,
.blog-text h5,
.blog-text h6 {
    margin: 1.5em 0 1em;
    color: #1a1a1a;
    font-weight: 700;
}

.blog-text h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.blog-text h3 {
    font-size: 1.5rem;
}

.blog-text blockquote {
    border-left: 4px solid #0066cc;
    padding: 10px 20px;
    margin: 2em 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}

@media (max-width: 768px) {
    .blog-container {
        padding: 15px;
        margin: 10px;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        font-size: 1rem;
    }
}