.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.blog-description {
    font-size: 1.1em;
    color: #666;
}

.blog-post-summary {
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    display: flex;
    gap: 20px;
}

.post-image img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.post-content {
    flex: 1;
}

.post-content h2 a {
    text-decoration: none;
    color: #333;
}

.post-content h2 a:hover {
    color: #007acc;
}

.post-meta {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.post-excerpt {
    margin: 15px 0;
    line-height: 1.6;
}

.post-taxonomy {
    margin-top: 15px;
}

.post-categories, .post-tags {
    margin: 5px 0;
}

.category-link, .tag-link {
    display: inline-block;
    margin-right: 10px;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
}

.category-link:hover, .tag-link:hover {
    background: #007acc;
    color: white;
}

.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination-link, .pagination-current {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination-current {
    background: #007acc;
    color: white;
    border-color: #007acc;
}

.post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.nav-previous, .nav-next {
    text-decoration: none;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Individual blog post styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.post-header h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #333;
}

.post-featured-image {
    margin: 20px 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}