/* Individual Blog Post Page */
.blog-post-container {
    max-width: 100%;
    min-height: 100vh;
    background: #f9f9f9;
    padding: 3rem 1rem;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.blog-post .post-header h1 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: #222;
    line-height: 1.4;
}

.post-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.separator {
    color: #ccc;
}

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

.post-content p {
    margin: 1.5rem 0;
}

.post-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #222;
}

.post-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
    color: #333;
}

.post-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin: 0.5rem 0;
}

.post-actions {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.back-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 1.5rem 1rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post .post-header h1 {
        font-size: 1.5rem;
    }

    .post-info {
        font-size: 0.85rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.3rem;
    }

    .post-content h3 {
        font-size: 1.1rem;
    }
}
