:root {
    --blog-void: #fdfaf6;
    --blog-deep: #f7f3ed;
    --blog-surface: #f5edd8;
    --blog-ink: #1a1612;
    --blog-amber: #c9a84c;
    --blog-amber-dim: #a08030;
    --blog-amber-glow: rgba(201, 168, 76, 0.1);
    --blog-bone: #1a1612;
    --blog-ash: rgba(26, 22, 18, 0.58);
    --blog-whisper: rgba(26, 22, 18, 0.38);
    --blog-line: rgba(201, 168, 76, 0.25);
    --blog-line-ink: rgba(26, 22, 18, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.blog-list-page,
body.blog-article-page {
    margin: 0;
    background: var(--blog-void);
    color: var(--blog-bone);
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
}

body.blog-list-page::before,
body.blog-article-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.12;
}

.blog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 28px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.blog-nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 56px;
    right: 56px;
    height: 1px;
    background: var(--blog-line);
}

.nav-mark {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--blog-ink);
    text-decoration: none;
}

.nav-mark span {
    font-size: 10px;
    vertical-align: super;
    font-family: "DM Mono", monospace;
    color: var(--blog-amber);
    font-weight: 300;
}

.nav-items {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-items a {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(26, 22, 18, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-items a:hover,
.nav-items a.active {
    color: var(--blog-amber);
}

.blog-footer {
    background: #1a1612;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 32px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    color: rgba(253, 250, 246, 0.3);
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--blog-amber);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.blog-header {
    padding: 160px 56px 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.blog-header::after {
    content: "Perspectives";
    position: absolute;
    top: 80px;
    right: 56px;
    font-family: "Playfair Display", serif;
    font-size: 160px;
    font-weight: 900;
    font-style: italic;
    color: var(--blog-amber);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.03em;
}

.blog-eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blog-amber);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.blog-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--blog-amber);
    flex-shrink: 0;
}

.blog-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    color: var(--blog-ink);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.blog-title em,
.featured-post-title em,
.post-card-title em,
.newsletter-title em,
.article-title em,
.article-body h2 em,
.related-title em,
.sidebar-cta-title em {
    font-style: italic;
    color: var(--blog-amber);
}

.blog-desc {
    font-size: 15px;
    color: var(--blog-ash);
    max-width: 520px;
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.categories {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 56px 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-btn {
    font-family: "DM Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid var(--blog-line);
    color: var(--blog-whisper);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.cat-btn:hover,
.cat-btn.active {
    border-color: var(--blog-amber);
    color: var(--blog-amber);
    background: var(--blog-amber-glow);
}

.featured-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 56px 80px;
    border-bottom: 1px solid var(--blog-line);
}

.featured-label,
.posts-grid-label,
.related-label {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blog-amber);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-label::after,
.posts-grid-label::after,
.related-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--blog-line);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.featured-image,
.article-hero-image .image-frame {
    position: relative;
    overflow: hidden;
    background: #e8e3d8;
}

.featured-image {
    aspect-ratio: 4 / 3;
}

.featured-image::before,
.article-hero-image .image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.featured-image::after,
.article-hero-image .image-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blog-amber), transparent);
}

.featured-image img,
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-image-placeholder,
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.featured-image-placeholder span,
.image-placeholder span {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.25);
}

.featured-meta,
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-tag {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blog-void);
    background: var(--blog-amber);
    padding: 4px 10px;
}

.post-date,
.post-read-time,
.post-card-date,
.post-card-tag,
.post-read-time-small,
.image-caption {
    font-family: "DM Mono", monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.post-date,
.post-read-time {
    font-size: 8px;
    color: var(--blog-whisper);
}

.featured-post-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--blog-ink);
    margin-bottom: 16px;
}

.featured-excerpt {
    font-size: 14px;
    color: var(--blog-ash);
    line-height: 1.85;
    margin-bottom: 28px;
}

.read-more {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blog-amber);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 16px;
}

.read-more::after {
    content: "→";
    font-size: 12px;
}

.posts-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 56px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--blog-line-ink);
}

.post-card {
    background: var(--blog-deep);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: background 0.3s;
    color: inherit;
}

.post-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blog-amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.post-card:hover {
    background: var(--blog-surface);
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 20px;
}

.post-card-tag,
.post-read-time-small {
    font-size: 7.5px;
    color: var(--blog-amber);
    opacity: 0.8;
}

.post-card-date {
    font-size: 7.5px;
    color: var(--blog-whisper);
}

.post-card-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blog-ink);
    margin-bottom: 14px;
    flex: 1;
}

.post-card-excerpt {
    font-size: 13px;
    color: var(--blog-ash);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--blog-line);
    padding-top: 16px;
    margin-top: auto;
}

.post-arrow {
    color: var(--blog-amber);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}

.post-card:hover .post-arrow {
    opacity: 1;
    transform: translateX(0);
}

.newsletter {
    background: #1a1612;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 80px 56px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-ornament {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--blog-amber), transparent);
    margin: 0 auto 32px;
}

.newsletter-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: #fdfaf6;
    margin-bottom: 12px;
}

.newsletter-sub {
    font-size: 14px;
    color: rgba(240, 235, 226, 0.5);
    line-height: 1.8;
    margin-bottom: 32px;
}

.newsletter-actions {
    display: flex;
    justify-content: center;
}

.newsletter-btn {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--blog-amber);
    color: var(--blog-void);
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #e8d5a3;
}

.empty-post-state {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 32px 56px;
}

.empty-post-card {
    border: 1px solid var(--blog-line);
    background: var(--blog-deep);
    padding: 2.5rem;
}

.empty-post-card h2 {
    margin: 0 0 0.75rem;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--blog-ink);
}

.empty-post-card p {
    margin: 0;
    color: var(--blog-ash);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--blog-amber);
    z-index: 200;
    width: 0%;
    transition: width 0.1s linear;
}

.preview-banner {
    position: sticky;
    top: 86px;
    z-index: 40;
    background: #1a1612;
    color: #fdfaf6;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.article-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 160px 56px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: 72px;
    align-items: center;
}

.article-header {
    max-width: none;
    margin: 0;
    min-width: 0;
}

.back-link {
    font-family: "DM Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blog-whisper);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    transition: color 0.2s;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
}

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

.back-link::before {
    content: "←";
}

.article-meta {
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.meta-dot {
    width: 3px;
    height: 3px;
    background: var(--blog-whisper);
    border-radius: 50%;
    opacity: 0.4;
}

.article-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--blog-ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
}

.article-lede {
    font-size: 18px;
    color: var(--blog-ash);
    line-height: 1.75;
    font-style: italic;
    border-left: 2px solid var(--blog-amber);
    padding-left: 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.5s forwards;
}

.article-hero-image {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
}

.article-hero-image .image-frame {
    aspect-ratio: 5 / 4;
}

.image-caption {
    font-size: 8px;
    color: var(--blog-whisper);
    margin-top: 12px;
    text-align: center;
}

.article-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 56px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 80px;
    align-items: start;
}

.article-body {
    min-width: 0;
}

.article-body h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blog-ink);
    margin: 48px 0 20px;
    line-height: 1.2;
}

.article-body h1 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--blog-ink);
    margin: 56px 0 24px;
    line-height: 1.12;
}

.article-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blog-ink);
    margin: 36px 0 14px;
}

.article-body h4,
.article-body h5,
.article-body h6 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blog-ink);
    margin: 28px 0 12px;
    line-height: 1.3;
}

.article-body p,
.article-body li,
.article-body blockquote {
    font-size: 16px;
    color: var(--blog-ash);
    line-height: 1.9;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body pre,
.article-body table {
    margin: 0 0 24px;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
}

.article-body a {
    color: var(--blog-amber-dim);
}

.article-body strong {
    color: var(--blog-ink);
    font-weight: 700;
}

.article-body em {
    font-style: italic;
}

.article-body blockquote,
.article-body .pull-quote {
    margin: 40px 0;
    padding: 28px 32px;
    border-left: 2px solid var(--blog-amber);
    background: rgba(201, 168, 76, 0.04);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-style: italic;
    color: var(--blog-ink);
}

.article-body blockquote p:last-child,
.article-body .pull-quote p:last-child {
    margin-bottom: 0;
}

.article-body hr,
.article-body .article-divider {
    width: 40px;
    height: 1px;
    border: 0;
    background: var(--blog-amber);
    opacity: 0.5;
    margin: 40px 0;
}

.article-body pre,
.article-body code {
    font-family: "DM Mono", monospace;
}

.article-body pre {
    background: #f3ede0;
    padding: 1rem 1.1rem;
    overflow-x: auto;
    border: 1px solid rgba(26, 22, 18, 0.08);
}

.article-body code {
    background: rgba(201, 168, 76, 0.12);
    padding: 0.1rem 0.35rem;
}

.article-body pre code {
    background: transparent;
    padding: 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
}

.article-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.article-body th,
.article-body td {
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(26, 22, 18, 0.12);
    text-align: left;
}

.article-body figure {
    margin: 32px 0;
}

.article-body figcaption {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blog-whisper);
    margin-top: 12px;
    text-align: center;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.article-body .task-list-item-checkbox {
    margin-right: 0.6rem;
    accent-color: var(--blog-amber);
}

.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-section {
    border-top: 1px solid rgba(26, 22, 18, 0.12);
    padding-top: 20px;
}

.sidebar-label {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blog-amber);
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.toc-list a,
.toc-button {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(26, 22, 18, 0.45);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    gap: 8px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.toc-list a:hover,
.toc-button:hover {
    color: var(--blog-amber);
}

.toc-list a::before,
.toc-button::before {
    content: "—";
    color: var(--blog-amber);
    opacity: 0.4;
    flex-shrink: 0;
}

.sidebar-cta {
    background: #1a1612;
    padding: 24px;
    border-top: 2px solid var(--blog-amber);
}

.sidebar-cta-title {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #fdfaf6;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sidebar-cta-text {
    font-size: 12px;
    color: rgba(240, 235, 226, 0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sidebar-cta-btn {
    font-family: "DM Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--blog-amber);
    color: var(--blog-void);
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.sidebar-cta-btn:hover {
    background: #e8d5a3;
}

.article-footer {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 56px 80px;
    border-top: 1px solid var(--blog-line-ink);
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.article-tag {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 22, 18, 0.4);
    border: 1px solid rgba(26, 22, 18, 0.15);
    padding: 6px 14px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.related-card {
    padding: 24px;
    border: 1px solid var(--blog-line-ink);
    transition: border-color 0.3s, background 0.3s;
    background: var(--blog-deep);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: var(--blog-amber);
    background: var(--blog-surface);
}

.related-tag {
    font-family: "DM Mono", monospace;
    font-size: 7.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blog-amber);
    margin-bottom: 10px;
    opacity: 0.8;
}

.related-title {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--blog-ink);
    line-height: 1.25;
}

@media (max-width: 900px) {
    .blog-nav {
        padding: 20px 24px;
    }

    .blog-nav::after {
        left: 24px;
        right: 24px;
    }

    .nav-items {
        display: none;
    }

    .blog-header {
        padding: 120px 24px 60px;
    }

    .blog-header::after {
        display: none;
    }

    .categories,
    .featured-wrap,
    .posts-wrap,
    .newsletter,
    .article-hero,
    .article-layout,
    .article-footer,
    .empty-post-state {
        padding-left: 24px;
        padding-right: 24px;
    }

    .featured-card,
    .article-hero,
    .article-layout,
    .related-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .article-hero {
        padding-top: 120px;
        padding-bottom: 48px;
        gap: 32px;
    }

    .article-sidebar {
        position: static;
    }

    .blog-footer {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .preview-banner {
        top: 72px;
    }
}
