/* Blog post listing and single post styles */

/* Blog listing page */
.blog-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}

.blog-list h1 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 40px;
}

/* Blog post card */
.blog-post-card {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.blog-post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-post-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-post-card h2 a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-card h2 a:hover {
    color: #666;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
}

.blog-post-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
}

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

/* Blog empty state */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Single blog post */
.blog-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}

.blog-single h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.blog-single .blog-meta {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 40px;
    font-family: 'Work Sans', sans-serif;
}

.blog-single .blog-meta span {
    margin-right: 20px;
}

.blog-single .blog-meta span:last-child {
    margin-right: 0;
}

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

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-content a {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.blog-content a:hover {
    text-decoration-thickness: 2px;
}

.blog-content blockquote {
    border-left: 3px solid #000;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.blog-content code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-content pre {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 20px 0;
}

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

/* Back link */
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-list {
        padding: 60px 20px 40px;
    }

    .blog-post-card h2 {
        font-size: 1.6rem;
    }

    .blog-single {
        padding: 60px 20px 40px;
    }

    .blog-single h1 {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1.05rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }
}
