﻿/* --- Layout Container --- */
.blog-post {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem 1rem;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* --- Back Link --- */
.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

    .back-link:hover {
        text-decoration: underline;
    }

/* --- Header --- */
.post-header {
    margin-bottom: 2.5rem;
}

.post-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* --- Tags --- */
.post-tags {
    margin-top: 0.5rem;
}

.tag-badge {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.4rem;
    text-decoration: none;
}

    .tag-badge:hover {
        background: #d0d0d0;
    }

/* --- Content Styling --- */
.post-content {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #222;
}

    .post-content p {
        margin-bottom: 1.3rem;
    }

    .post-content h2,
    .post-content h3,
    .post-content h4 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .post-content img {
        max-width: 100%;
        border-radius: 6px;
        margin: 1.5rem 0;
    }

    /* --- Code Blocks --- */
    .post-content pre {
        background: #f5f5f5;
        padding: 1rem;
        border-radius: 6px;
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    .post-content code {
        font-family: Consolas, Menlo, monospace;
        background: #f0f0f0;
        padding: 0.15rem 0.3rem;
        border-radius: 4px;
    }

    /* --- Blockquotes --- */
    .post-content blockquote {
        border-left: 4px solid #ccc;
        padding-left: 1rem;
        color: #555;
        margin: 1.5rem 0;
        font-style: italic;
    }

    /* --- Lists --- */
    .post-content ul,
    .post-content ol {
        margin-bottom: 1.3rem;
        padding-left: 1.5rem;
    }

    .post-content li {
        margin-bottom: 0.4rem;
    }
