/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.post-meta-top {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.read-time::before {
    content: "⏱ ";
}

.post-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #111;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.post-meta-bottom {
    display: flex;
    gap: 1.5rem;
    color: #999;
    font-size: 0.85rem;
}

/* .word-count::before {
    content: "📄 ";
}

.post-date::before {
    content: "📅 ";
} */

/* Responsive */
@media (max-width: 768px) {
    .blog-post {
        padding: 3rem 1.5rem 2rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-meta-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}