/* ============================================================
   ROAD HERO — BLOG
   Archive + Single post
   ============================================================ */

/* ── Blog archive hero ──────────────────────────────────────── */
.rh-blog-hero {
    background: var(--clr-black);
    padding-block: var(--space-16) var(--space-14);
    text-align: center;
}

.rh-blog-hero__inner {
    max-width: 680px;
    margin-inline: auto;
}

.rh-blog-hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-red);
    margin-bottom: var(--space-5);
}

.rh-blog-hero__label svg { width: 14px; height: 14px; }

.rh-blog-hero__title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--clr-white) !important;
    letter-spacing: -0.04em;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-5);
}

.rh-blog-hero__sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.5);
    line-height: var(--leading-normal);
    margin: 0;
}

/* ── Archive main ────────────────────────────────────────────── */
.rh-blog-main {
    padding-block: var(--space-12) var(--space-16);
}

/* ── Featured post ───────────────────────────────────────────── */
.rh-blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-12);
    transition: box-shadow var(--dur-base) var(--ease);
}

.rh-blog-featured:hover {
    box-shadow: var(--shadow-lg);
}

.rh-blog-featured__img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--clr-surface);
    flex-shrink: 0;
}

.rh-blog-featured__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.rh-blog-featured:hover .rh-blog-featured__img-wrap img {
    transform: scale(1.03);
}

.rh-blog-featured__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface);
    color: var(--clr-border);
}

.rh-blog-featured__img-placeholder svg { width: 56px; height: 56px; }

.rh-blog-featured__body {
    padding: var(--space-10) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
}

.rh-blog-featured__title {
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: var(--leading-snug);
    margin: 0;
}

.rh-blog-featured__title a {
    color: var(--clr-black);
    text-decoration: none;
    transition: color var(--dur-fast);
}

.rh-blog-featured__title a:hover { color: var(--clr-red); }

.rh-blog-featured__excerpt {
    font-size: var(--text-base);
    color: var(--clr-mid);
    line-height: var(--leading-normal);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Grid header ─────────────────────────────────────────────── */
.rh-blog-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 1.5px solid var(--clr-border);
}

.rh-blog-grid-title {
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-black);
    margin: 0;
}

/* ── Post grid ───────────────────────────────────────────────── */
.rh-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.rh-blog-grid--related {
    margin-bottom: 0;
}

/* ── Post card ───────────────────────────────────────────────── */
.rh-post-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}

.rh-post-card:hover {
    border-color: #d0d0d0;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rh-post-card__img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--clr-surface);
    flex-shrink: 0;
}

.rh-post-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.rh-post-card:hover .rh-post-card__img-wrap img {
    transform: scale(1.04);
}

.rh-post-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-border);
}

.rh-post-card__img-placeholder svg { width: 36px; height: 36px; }

.rh-post-card__body {
    padding: var(--space-5) var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
}

.rh-post-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: var(--leading-snug);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rh-post-card__title a {
    color: var(--clr-black);
    text-decoration: none;
    transition: color var(--dur-fast);
}

.rh-post-card__title a:hover { color: var(--clr-red); }

.rh-post-card__excerpt {
    font-size: var(--text-sm);
    color: var(--clr-mid);
    line-height: var(--leading-normal);
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rh-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-red);
    text-decoration: none;
    margin-top: auto;
    transition: gap var(--dur-fast);
}

.rh-post-card__link:hover { gap: var(--space-3); }
.rh-post-card__link svg { width: 14px; height: 14px; }

/* ── Category badge ──────────────────────────────────────────── */
.rh-post-cat {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: var(--clr-red);
    color: var(--clr-white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    line-height: 1.5;
    z-index: 1;
}

.rh-post-cat--hero {
    position: static;
    display: inline-block;
    margin-bottom: var(--space-4);
}

/* ── Post meta row ───────────────────────────────────────────── */
.rh-post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.rh-post-meta__date,
.rh-post-meta__read {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    color: var(--clr-light);
    font-weight: 500;
}

.rh-post-meta__date svg,
.rh-post-meta__read svg { width: 12px; height: 12px; }

/* ── Pagination ──────────────────────────────────────────────── */
.rh-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-10);
}

.rh-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-ash);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

.rh-blog-pagination .page-numbers svg { width: 14px; height: 14px; }

.rh-blog-pagination .page-numbers:hover {
    border-color: var(--clr-ash);
    color: var(--clr-black);
}

.rh-blog-pagination .page-numbers.current {
    background: var(--clr-red);
    border-color: var(--clr-red);
    color: var(--clr-white);
}

.rh-blog-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
}

/* ── Empty state ─────────────────────────────────────────────── */
.rh-blog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-20) 0;
    color: var(--clr-mid);
    text-align: center;
}

.rh-blog-empty svg { width: 48px; height: 48px; color: var(--clr-border); }

/* ============================================================
   SINGLE POST
   ============================================================ */

/* ── Post hero ───────────────────────────────────────────────── */
.rh-post-hero {
    background: var(--clr-black);
    padding-block: var(--space-14) var(--space-12);
    position: relative;
    overflow: hidden;
}

.rh-post-hero--has-image {
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-10);
}

.rh-post-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.rh-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.88) 100%
    );
}

.rh-post-hero .container { position: relative; z-index: 1; }

.rh-post-hero__inner {
    max-width: 780px;
}

/* Breadcrumb */
.rh-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.rh-post-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--dur-fast);
}

.rh-post-breadcrumb a:hover { color: var(--clr-white); }
.rh-post-breadcrumb svg { width: 12px; height: 12px; opacity: 0.4; }

/* Hero title */
.rh-post-hero__title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--clr-white) !important;
    letter-spacing: -0.04em;
    line-height: var(--leading-tight);
    margin: 0 0 var(--space-6);
    max-width: 760px;
}

/* Hero meta bar */
.rh-post-hero__meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.rh-post-hero__sep { color: rgba(255,255,255,0.25); }

.rh-post-hero__date,
.rh-post-hero__read {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.rh-post-hero__date svg,
.rh-post-hero__read svg { width: 13px; height: 13px; }

/* Author chip */
.rh-post-author-chip {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.rh-post-author-chip__avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.rh-post-author-chip__avatar img,
.rh-author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Post main layout ────────────────────────────────────────── */
.rh-post-main {
    padding-block: var(--space-12) var(--space-16);
}

.rh-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-10);
    align-items: start;
}

/* ── Post content column ─────────────────────────────────────── */
.rh-post-content {
    min-width: 0;
}

.rh-post-thumbnail {
    margin-bottom: var(--space-8);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.rh-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Prose styles ────────────────────────────────────────────── */
.rh-prose {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--clr-ink);
}

.rh-prose h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-black) !important;
    margin: var(--space-10) 0 var(--space-4);
    padding-top: var(--space-2);
    border-top: 2px solid var(--clr-border);
}

.rh-prose h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--clr-black) !important;
    margin: var(--space-8) 0 var(--space-3);
}

.rh-prose h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--clr-black) !important;
    margin: var(--space-6) 0 var(--space-3);
}

.rh-prose p { margin: 0 0 var(--space-5); }
.rh-prose p:last-child { margin-bottom: 0; }

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

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

.rh-prose strong { font-weight: 700; color: var(--clr-black); }
.rh-prose em { font-style: italic; }

.rh-prose ul,
.rh-prose ol {
    margin: 0 0 var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.rh-prose ul { list-style: disc; }
.rh-prose ol { list-style: decimal; }

.rh-prose ul li::marker { color: var(--clr-red); }
.rh-prose ol li::marker { color: var(--clr-red); font-weight: 700; }

.rh-prose blockquote {
    margin: var(--space-8) 0;
    padding: var(--space-5) var(--space-6);
    border-left: 4px solid var(--clr-red);
    background: var(--clr-red-light);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--clr-ash);
}

.rh-prose blockquote p { margin: 0; }

.rh-prose img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-block: var(--space-6);
}

.rh-prose figure {
    margin: var(--space-8) 0;
}

.rh-prose figcaption {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--clr-light);
    margin-top: var(--space-2);
}

.rh-prose table {
    width: 100%;
    border-collapse: collapse;
    margin-block: var(--space-6);
    font-size: var(--text-sm);
}

.rh-prose table th {
    background: var(--clr-surface);
    font-weight: 700;
    text-align: left;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--clr-border);
    color: var(--clr-black);
}

.rh-prose table td {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--clr-border);
    color: var(--clr-ash);
}

.rh-prose table tr:nth-child(even) td { background: var(--clr-surface); }

.rh-prose hr {
    border: none;
    border-top: 1.5px solid var(--clr-border);
    margin-block: var(--space-10);
}

.rh-prose code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    background: var(--clr-surface);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    color: var(--clr-red);
}

.rh-prose pre {
    background: var(--clr-black);
    color: var(--clr-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin-block: var(--space-6);
}

.rh-prose pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* ── Tags ────────────────────────────────────────────────────── */
.rh-post-tags {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1.5px solid var(--clr-border);
}

.rh-post-tags svg { width: 14px; height: 14px; color: var(--clr-light); flex-shrink: 0; }

.rh-post-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--clr-ash);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: border-color var(--dur-fast), color var(--dur-fast);
}

.rh-post-tag:hover {
    border-color: var(--clr-red);
    color: var(--clr-red);
}

/* ── Author box ──────────────────────────────────────────────── */
.rh-author-box {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
}

.rh-author-box__avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.rh-author-box__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rh-author-box__name {
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--clr-black);
    margin: 0 0 var(--space-2);
}

.rh-author-box__bio {
    font-size: var(--text-sm);
    color: var(--clr-mid);
    line-height: var(--leading-normal);
    margin: 0;
}

/* ── Post nav ────────────────────────────────────────────────── */
.rh-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1.5px solid var(--clr-border);
}

.rh-post-nav__link {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.rh-post-nav__link:hover {
    border-color: var(--clr-ash);
    box-shadow: var(--shadow-sm);
}

.rh-post-nav__link--next { text-align: right; }

.rh-post-nav__dir {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-red);
}

.rh-post-nav__link--next .rh-post-nav__dir { justify-content: flex-end; }
.rh-post-nav__dir svg { width: 13px; height: 13px; }

.rh-post-nav__title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-ash);
    line-height: var(--leading-snug);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--dur-fast);
}

.rh-post-nav__link:hover .rh-post-nav__title { color: var(--clr-black); }

/* ── Sidebar ─────────────────────────────────────────────────── */
.rh-post-sidebar {
    position: sticky;
    top: calc(var(--header-h, 72px) + var(--space-6));
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* CTA card */
.rh-sidebar-cta {
    background: var(--clr-black);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
}

.rh-sidebar-cta__icon {
    width: 56px;
    height: 56px;
    background: rgba(200,57,43,0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--clr-red);
}

.rh-sidebar-cta__icon svg { width: 28px; height: 28px; }

.rh-sidebar-cta h3 {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--clr-white) !important;
    letter-spacing: -0.02em;
    margin: 0;
}

.rh-sidebar-cta p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: var(--leading-normal);
}

.rh-sidebar-cta__trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: left;
    margin-top: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.rh-sidebar-cta__trust li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.55);
}

.rh-sidebar-cta__trust li svg {
    width: 13px;
    height: 13px;
    color: var(--clr-red);
    flex-shrink: 0;
}

/* Meta card */
.rh-sidebar-meta {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.rh-sidebar-meta__row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.rh-sidebar-meta__row > svg {
    width: 15px;
    height: 15px;
    color: var(--clr-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.rh-sidebar-meta__key {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-light);
    margin-bottom: 2px;
}

.rh-sidebar-meta__val {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-ash);
    display: block;
}

.rh-sidebar-meta__val--link {
    color: var(--clr-red);
    text-decoration: none;
}

.rh-sidebar-meta__val--link:hover { text-decoration: underline; }

/* ── Related posts section ───────────────────────────────────── */
.rh-related {
    background: var(--clr-surface);
    border-top: 1.5px solid var(--clr-border);
    padding-block: var(--space-12) var(--space-14);
    margin-top: var(--space-6);
}

.rh-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.rh-related__title {
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-black);
    margin: 0;
}

.rh-related__all {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-red);
    text-decoration: none;
    transition: gap var(--dur-fast);
}

.rh-related__all:hover { gap: var(--space-3); }
.rh-related__all svg { width: 14px; height: 14px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rh-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .rh-post-layout { grid-template-columns: 1fr 260px; gap: var(--space-8); }
    .rh-blog-featured__title { font-size: var(--text-2xl); }
    .rh-blog-featured__body { padding: var(--space-8); }
    .rh-post-hero__title { font-size: var(--text-3xl); }
}

@media (max-width: 768px) {
    .rh-blog-hero { padding-block: var(--space-10); }
    .rh-blog-hero__title { font-size: var(--text-3xl); }
    .rh-blog-featured {
        grid-template-columns: 1fr;
    }
    .rh-blog-featured__img-wrap { aspect-ratio: 16/9; }
    .rh-blog-featured__body { padding: var(--space-6); }
    .rh-blog-featured__title { font-size: var(--text-xl); }
    .rh-blog-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
    .rh-post-layout {
        grid-template-columns: 1fr;
    }
    .rh-post-sidebar { position: static; }
    /* Move sidebar CTA above content on mobile */
    .rh-post-sidebar { order: -1; }
    .rh-post-hero--has-image { min-height: 360px; }
    .rh-post-hero__title { font-size: var(--text-2xl); }
    .rh-post-nav { grid-template-columns: 1fr; }
    .rh-post-nav__link--next { text-align: left; }
    .rh-post-nav__link--next .rh-post-nav__dir { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .rh-blog-grid { grid-template-columns: 1fr; }
    .rh-blog-hero__title { font-size: var(--text-2xl); }
    .rh-post-hero__meta { gap: var(--space-3); flex-direction: column; align-items: flex-start; }
    .rh-post-hero__sep { display: none; }
}
