body.blog {
    display: block;
    padding: 0;
    font-size: 1.0625rem;
}

.blog-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

.blog-header__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.blog-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    animation: fadeUp 0.6s ease both;
}

.blog-list__header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.blog-list__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.blog-list__subtitle {
    color: var(--muted);
    font-size: 1rem;
}

.post-list {
    list-style: none;
}

.post-list__item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.post-list__item:first-child {
    padding-top: 0;
}

.post-list__empty {
    color: var(--muted);
    text-align: center;
    padding: 2rem 0;
    list-style: none;
}

.post-list__meta {
    margin-bottom: 0.5rem;
}

.post-list__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.post-list__description {
    color: var(--blurb-text);
    line-height: 1.65;
    font-size: 1rem;
}

.post-list__read-more {
    color: var(--muted);
    text-decoration: none;
    margin-left: 0.35em;
    transition: color var(--transition-fast);
}

.post-list__read-more:hover {
    color: var(--red);
}

.post__header {
    margin-bottom: 2rem;
    text-align: center;
}

.post__meta {
    margin-bottom: 0.75rem;
}

.post__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 0;
}

.post__description {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.75;
    color: var(--muted);
    max-width: 34rem;
    margin: 1.25rem auto 0;
    padding-top: 1.25rem;
}

.post__description::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto 1.25rem;
}

.post__footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.post__back {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.post__back:hover {
    color: var(--text);
}

.prose {
    color: var(--blurb-text);
    line-height: 1.8;
}

.prose > * + * {
    margin-top: 1.25rem;
}

.prose h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.35rem;
    margin-top: 2rem;
}

.prose a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.prose a:hover {
    color: var(--red);
}

.prose code {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 0.9em;
    background: var(--bg2);
    padding: 0.15em 0.4em;
    border-radius: var(--radius-sm);
}

.prose pre {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    overflow-x: auto;
}

.prose pre code {
    background: none;
    padding: 0;
}

.prose blockquote {
    border-left: 2px solid var(--red-accent);
    padding-left: 1rem;
    color: var(--muted);
    font-style: italic;
}

@media (max-width: 480px) {
    .blog-main {
        padding: 2rem 1.25rem 3rem;
    }
}
