/* Blog Post Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.blog-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    border-bottom: 2px solid #0170B9;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #0170B9;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-header h1 {
    font-size: 32px;
    color: #0170B9;
    line-height: 1.3;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-content p {
    margin-bottom: 1.5em;
    text-align: justify;
    line-height: 1.8;
}

.blog-content figure {
    margin: 2em 0;
    text-align: center;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-content figcaption {
    margin-top: 12px;
    font-size: 16px;
    color: #555;
    font-style: italic;
    font-weight: 500;
}

/* Image Layout Classes */
.image-row {
    display: flex;
    gap: 20px;
    margin: 2em 0;
    align-items: center;
    justify-content: center;
}

.image-row figure {
    flex: 1;
    margin: 0;
    text-align: center;
}

.image-row img {
    width: 100%;
    max-width: 100%;
}

.image-center {
    margin: 2em 0;
    text-align: center;
}

.image-center figure {
    margin: 0;
    display: inline-block;
}

.text-center {
    text-align: center;
}

.blog-footer {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header {
        padding: 20px 15px 15px;
    }
    
    .blog-header h1 {
        font-size: 24px;
    }
    
    .blog-content {
        padding: 20px 15px;
    }
    
    .blog-content p {
        text-align: left;
    }
    
    .image-row {
        flex-direction: column;
        gap: 15px;
    }
}
