/* Blog post list styles */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 0;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.blog-post-card:hover {
    transform: translateY(-2px);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #666;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more, .blog-content .read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
}

.read-more:hover, .blog-content .read-more:hover {
    text-decoration: underline;
}

/* Individual blog post styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Blog post dates styling - small and subtle */
.blog-dates {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-dates .updated-date {
    margin-left: 1rem;
    font-style: italic;
}

.blog-post .post-thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.blog-post .post-meta {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-post .updated-at {
    color: #666;
    font-style: italic;
    margin-left: 1rem;
}

.blog-post .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-post .post-navigation {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.back-to-blog {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.back-to-blog:hover {
    text-decoration: underline;
}
