.blog-post-page {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

/* ── Hero ── */

.blog-post-hero {
    margin-bottom: 2rem;
}

.blog-post-author {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.blog-post-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 12px;
}

.blog-post-underline {
    width: 32px;
    height: 2px;
    background: var(--red);
    margin-bottom: 14px;
}

.blog-post-date {
    font-size: 13px;
    color: #999;
}

/* ── Cover image ── */

.blog-post-cover {
    margin-bottom: 2.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid var(--line);
}

.blog-post-cover img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* ── Body ── */

.blog-post-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ink);
    margin-bottom: 3rem;
}

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

/* ── Section titles ── */

.blog-post-section-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
}

/* ── Gallery ── */

.blog-post-gallery {
    margin-bottom: 2.5rem;
}

.blog-post-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.blog-post-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid var(--line);
    background: #fff;
}

.blog-post-gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.blog-post-gallery-item figcaption {
    padding: 8px 12px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* ── Attachments ── */

.blog-post-attachments {
    margin-bottom: 2.5rem;
}

.blog-post-attachment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-post-attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 0.5px solid var(--line);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: var(--ink);
    text-decoration: none;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.blog-post-attachment-link:hover {
    border-color: var(--red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.attachment-icon {
    font-size: 15px;
}

/* ── Back link ── */

.back-link {
    display: inline-block;
    font-size: 13.5px;
    color: #888;
    text-decoration: none;
    transition: color 0.15s;
}

.back-link:hover {
    color: var(--ink);
}

/* ── Mobile ── */

@media (max-width: 600px) {
    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}
