/* FILE: assets/css/blog-post.css */

.post-container {
    margin: 2rem auto;
    padding: 2rem;
    max-width: 768px;
}

.post-main-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.back-to-blog-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.blog-post-full h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    word-wrap: break-word;
}

.post-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.code-block {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.9rem;
    margin: 2rem 0;
}
