/* ── DripHeat Blog Styles ───────────────────────────────── */

/* Horizontal gutter for all post-page sections */
:root { --dh-post-px: 24px; }
@media (max-width: 600px) { :root { --dh-post-px: 16px; } }

/* ═══════════════════════════════════════════════
   BLOG ARCHIVE — template-blog.php
═══════════════════════════════════════════════ */

.dh-blog-page {
    min-height: 60vh;
}

/* ── Hero ──────────────────────────────────────────── */
.dh-blog-hero {
    background: #111;
    color: #fff;
    padding: 48px 24px 64px;
    text-align: center;
}

.dh-blog-hero__noise { display: none; }

.dh-blog-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dh-blog-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
    display: block;
}

.dh-blog-hero__eyebrow-line { display: none; }

.dh-blog-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1;
    margin-bottom: 16px;
    color: #fff;
}

.dh-blog-hero__desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Breadcrumbs ──────────────────────────────────── */
/* Breadcrumbs — inside the dark hero */
.dh-blog-breadcrumbs {
    margin-bottom: 14px;
}

.dh-blog-breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: rgba(255,255,255,.45);
}

.dh-blog-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dh-blog-breadcrumbs__item:not(:first-child)::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1.5px solid rgba(255,255,255,.35);
    border-right: 1.5px solid rgba(255,255,255,.35);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.dh-blog-breadcrumbs__link {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}

.dh-blog-breadcrumbs__link:hover { color: #fff; }

.dh-blog-breadcrumbs__item--current,
.dh-blog-breadcrumbs__list .dh-blog-breadcrumbs__item--current {
    color: #fff !important;
    font-weight: 600;
}

/* ── Category filter nav ──────────────────────────── */
.dh-blog-cats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    border-bottom: 1px solid #e8e8e8;
}

.dh-blog-cats__item {
    display: inline-block;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
    margin-bottom: -1px;
}

.dh-blog-cats__item:hover {
    color: #111;
}

.dh-blog-cats__item--active {
    color: #111;
    border-bottom-color: #111;
}

@media (max-width: 600px) {
    .dh-blog-cats {
        padding: 0 16px;
        gap: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .dh-blog-cats::-webkit-scrollbar { display: none; }
    .dh-blog-cats__item { padding: 12px 14px; }
}

.dh-blog-breadcrumbs__link:hover {
    color: #111;
}

.dh-blog-breadcrumbs__item--current {
    color: #111;
    font-weight: 500;
}

@media (max-width: 600px) {
    .dh-blog-breadcrumbs {
        padding: 14px 16px 0;
    }
}

/* ── Main wrapper ─────────────────────────────────── */
.dh-blog-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

/* ── Grid ─────────────────────────────────────────── */
.dh-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .dh-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .dh-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Card ─────────────────────────────────────────── */
.dh-blog-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
}

.dh-blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.dh-blog-card__img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f3f3f3;
    flex-shrink: 0;
}

.dh-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.dh-blog-card:hover .dh-blog-card__img {
    transform: scale(1.04);
}

.dh-blog-card__img--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.dh-blog-card__img--placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,.03) 10px,
        rgba(255,255,255,.03) 20px
    );
}

.dh-blog-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.dh-blog-card__date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
}

.dh-blog-card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    margin: 0;
}

.dh-blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}

.dh-blog-card__title a:hover {
    color: #444;
}

.dh-blog-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    flex: 1;
}

.dh-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 4px;
    transition: gap .15s;
}

.dh-blog-card__read-more:hover {
    gap: 10px;
}

/* ── Pagination ───────────────────────────────────── */
.dh-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.dh-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    transition: all .15s;
}

.dh-blog-pagination .page-numbers:hover,
.dh-blog-pagination .page-numbers.current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.dh-blog-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
}

/* ── Empty state ──────────────────────────────────── */
.dh-blog-empty {
    text-align: center;
    padding: 80px 24px;
    color: #888;
    font-size: 16px;
}


/* ═══════════════════════════════════════════════
   SINGLE POST — single.php
═══════════════════════════════════════════════ */

.dh-post-page {
    min-height: 60vh;
    background: #fff;
}

/* ── Hero ─────────────────────────────────────── */
.dh-post__hero {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    background: #111;
}

.dh-post__hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* ── Header ───────────────────────────────────── */
.dh-post__header {
    background: #111;
    color: #fff;
    padding: 32px var(--dh-post-px) 40px;
}

.dh-post__header-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Breadcrumbs ──────────────────────────────── */
.dh-post__breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #555;
}

.dh-post__breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dh-post__breadcrumbs-list li:not(:first-child)::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1.5px solid #444;
    border-right: 1.5px solid #444;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.dh-post__breadcrumbs-list a {
    color: #666;
    text-decoration: none;
    transition: color .15s;
}

.dh-post__breadcrumbs-list a:hover { color: #fff; }

.dh-post__breadcrumbs-list li[aria-current] { color: #999; }

/* ── Title ────────────────────────────────────── */
.dh-post__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

/* ── Meta bar ─────────────────────────────────── */
.dh-post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.dh-post__meta-sep { color: #444; }

.dh-post__meta-item { color: #888; }

.dh-post__meta-author a,
.dh-post__meta-cat {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
}

.dh-post__meta-author a:hover,
.dh-post__meta-cat:hover { color: #fff; }

/* ── Layout wrapper ───────────────────────────── */
.dh-post__layout {
    padding: 48px var(--dh-post-px) 64px;
    width: 100%;
}

/* With TOC: two-column grid on desktop */
@media (min-width: 1024px) {
    .dh-post__layout--has-toc {
        display: grid;
        grid-template-columns: 1fr 260px;
        grid-template-areas: "content toc";
        column-gap: 48px;
        align-items: start;
    }

    .dh-post__layout--has-toc .dh-post__toc {
        grid-area: toc;
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .dh-post__layout--has-toc .dh-post__content-wrap {
        grid-area: content;
        max-width: 900px;
        margin: 0 auto;
        padding: 0;
    }
}

.dh-post__content-wrap {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ── TOC ──────────────────────────────────────── */
.dh-post__toc {
    background: #f7f7f7;
    border-left: 3px solid #111;
    padding: 0;
    margin-bottom: 40px;
}

/* Toggle button — visible on mobile, header-only on desktop */
.dh-post__toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 8px;
    text-align: left;
}

.dh-post__toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #555;
    flex: 1;
}

.dh-post__toc-chevron {
    flex-shrink: 0;
    color: #888;
    transition: transform .2s;
}

.dh-post__toc--open .dh-post__toc-chevron,
.dh-post__toc--always-open .dh-post__toc-chevron {
    transform: rotate(180deg);
}

/* List — hidden on mobile until opened */
.dh-post__toc-list {
    display: none;
    margin: 0;
    padding: 0 16px 14px 28px;
    list-style: decimal;
}

.dh-post__toc--open .dh-post__toc-list {
    display: block;
}

.dh-post__toc-item {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.4;
}

.dh-post__toc-item--h3 {
    padding-left: 14px;
    font-size: 12px;
    list-style-type: disc;
}

.dh-post__toc-item a {
    color: #555;
    text-decoration: none;
    transition: color .15s;
}

.dh-post__toc-item a:hover { color: #111; }

.dh-post__toc-item--active > a {
    color: #111;
    font-weight: 600;
}

/* Desktop overrides: always show list, hide chevron */
@media (min-width: 1024px) {
    .dh-post__toc-toggle {
        pointer-events: none; /* not a toggle on desktop */
    }

    .dh-post__toc-chevron { display: none; }

    .dh-post__toc-list {
        display: block !important;
        padding-bottom: 16px;
    }
}

/* ── Content typography ───────────────────────── */
.dh-post__content {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

.dh-post__content h2,
.dh-post__content h3,
.dh-post__content h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 2em 0 .6em;
    scroll-margin-top: 100px; /* offset for fixed header */
}

.dh-post__content h2 { font-size: 26px; }
.dh-post__content h3 { font-size: 22px; }
.dh-post__content h4 { font-size: 18px; }

.dh-post__content > *:first-child { margin-top: 0; }

.dh-post__content p { margin-bottom: 1.4em; }
.dh-post__content p:last-child { margin-bottom: 0; }

.dh-post__content a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .15s;
}

.dh-post__content a:hover { opacity: .65; }

.dh-post__content ul,
.dh-post__content ol { margin: 0 0 1.4em 1.4em; }

.dh-post__content li { margin-bottom: .4em; }

.dh-post__content blockquote {
    border-left: 3px solid #111;
    margin: 2em 0;
    padding: 16px 24px;
    background: #f7f7f7;
    font-style: italic;
    color: #444;
}

.dh-post__content blockquote p { margin-bottom: 0; }

.dh-post__content img {
    max-width: 100%;
    height: auto;
    margin: 1.6em 0;
    display: block;
}

.dh-post__content figure { margin: 2em 0; }

.dh-post__content figcaption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
}

.dh-post__content hr {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 2.5em 0;
}

.dh-post__content pre,
.dh-post__content code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #f4f4f4;
}

.dh-post__content code { padding: 2px 6px; }

.dh-post__content pre {
    padding: 16px 20px;
    overflow-x: auto;
    margin: 1.4em 0;
}

.dh-post__content pre code { background: none; padding: 0; }

/* ── Author bio (inside content column, after body) ── */
.dh-post__author {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 48px;
    padding: 24px;
    background: #f7f7f7;
    border-left: 3px solid #111;
}

.dh-post__author-photo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.dh-post__author-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dh-post__author-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.dh-post__author-name a {
    color: inherit;
    text-decoration: none;
}

.dh-post__author-name a:hover { text-decoration: underline; }

.dh-post__author-job {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
    margin: 0;
}

.dh-post__author-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 4px 0 0;
}

/* Social links row */
.dh-post__author-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.dh-post__author-socials-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #aaa;
    flex-shrink: 0;
}

.dh-post__author-socials-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dh-post__author-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #888;
    text-decoration: none;
    transition: color .15s;
    flex-shrink: 0;
}

.dh-post__author-social svg {
    width: 14px;
    height: 14px;
    display: block;
    flex-shrink: 0;
}

.dh-post__author-social:hover { color: #111; }

@media (max-width: 480px) {
    .dh-post__author { flex-direction: column; gap: 12px; }
    .dh-post__author-photo { width: 56px; height: 56px; min-width: 56px; }
}

/* ── Share buttons (in dark header) ──────────── */
.dh-post__share {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.dh-post__share--hero {
    margin-top: 4px;
}

.dh-post__share-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #555;
    margin-right: 4px;
}

.dh-post__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    text-decoration: none;
    color: #888;
    background: transparent;
    border: 1.5px solid #333;
    cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
    font-family: inherit;
    flex-shrink: 0;
}

.dh-post__share-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    pointer-events: none;
}

.dh-post__share-btn:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,.08);
}

/* "Copied!" state */
.dh-post__share-btn--copy[data-copied]::after {
    content: 'Copied!';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    padding: 3px 8px;
    pointer-events: none;
}

.dh-post__share-btn--copy {
    position: relative;
}

/* ── Section shared styles ────────────────────── */
.dh-post__section-inner {
    width: 100%;
    padding: 48px var(--dh-post-px);
}

.dh-post__section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: #111;
    margin: 0 0 28px;
}


/* ── Shop the Look slider ─────────────────────────── */
.dh-post__shop-section { border-top: 1px solid #e8e8e8; }

/* Shop section container — full width with consistent padding */
.dh-post__shop-section > .container {
    max-width: 100%;
    padding-left: var(--dh-post-px);
    padding-right: var(--dh-post-px);
}

/* Mirror .product-slider styles from parent theme */
.dh-post__shop-swiper {
    position: relative;
    width: 100%;
    padding: 0 8px;
}

@media (min-width: 576px) {
    .dh-post__shop-swiper { padding: 0 16px; }
}

.dh-post__shop-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding-bottom: 35px;
}

/* Pagination — same style as .product-slider */
.dh-post__shop-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px;
    z-index: 10;
    transform: none !important;
}

.dh-post__shop-swiper .swiper-pagination-bullet {
    width: 40px !important;
    height: 3px !important;
    background-color: #a1a4ab !important;
    border: none !important;
    opacity: 1 !important;
    transition: all .3s ease;
    border-radius: 0 !important;
    margin: 0 !important;
    cursor: pointer;
}

.dh-post__shop-swiper .swiper-pagination-bullet:hover {
    background-color: #6b6f79 !important;
}

.dh-post__shop-swiper .swiper-pagination-bullet-active {
    background-color: #000 !important;
    width: 24px !important;
}

/* Keep product-card full width inside slide */
.dh-post__shop-slide .product-card { width: 100%; }

/* Prevent FOUC: before Swiper init slides behave like after init */
.dh-post__shop-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.dh-post__shop-swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0;
    width: calc(25% - 12px);
}

@media (max-width: 991px) {
    .dh-post__shop-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(33.33% - 11px);
    }
}

@media (max-width: 575px) {
    .dh-post__shop-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(66.66% - 8px);
    }
}

/* ── Related posts grid ───────────────────────── */
.dh-post__related-posts {
    border-top: 1px solid #e8e8e8;
}

.dh-post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .dh-post__related-grid { grid-template-columns: 1fr; gap: 16px; }
}

.dh-post__related-card {
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dh-post__related-img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8e8e8;
}

.dh-post__related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.dh-post__related-card:hover .dh-post__related-img { transform: scale(1.04); }

.dh-post__related-body { display: flex; flex-direction: column; gap: 6px; }

.dh-post__related-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
}

.dh-post__related-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: #111;
    transition: opacity .15s;
}

.dh-post__related-card:hover .dh-post__related-title { opacity: .7; }

/* ── CTA Banner ───────────────────────────────── */
.dh-post__cta-wrap {
    border-top: 1px solid #e8e8e8;
    padding: 48px var(--dh-post-px);
    background: #111;
}

.dh-post__cta {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.dh-post__cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 6px;
}

.dh-post__cta-desc {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.dh-post__cta-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.dh-post__cta-btn:hover {
    background: #e8e8e8;
}

/* ── Prev / Next navigation ───────────────────── */
.dh-post__nav {
    background: #f7f7f7;
    border-top: 1px solid #e8e8e8;
}

.dh-post__nav-inner {
    width: 100%;
    padding: 0 var(--dh-post-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dh-post__nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    text-decoration: none;
    color: #111;
    min-height: 88px;
}

.dh-post__nav-item--prev {
    border-right: 1px solid #e8e8e8;
    padding-right: 32px;
}

.dh-post__nav-item--next {
    padding-left: 32px;
    flex-direction: row-reverse;
    text-align: right;
}

.dh-post__nav-item:hover { color: #444; }
.dh-post__nav-item--empty { pointer-events: none; }

.dh-post__nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.dh-post__nav-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
    flex: 1;
}

.dh-post__nav-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 600px) {
    .dh-blog-hero   { padding: 56px 16px 48px; }
    .dh-blog-wrap   { padding: 40px 16px 64px; }
    .dh-post__layout { padding: 32px 16px 48px; }
    .dh-post__header { padding: 24px var(--dh-post-px) 32px; }
    .dh-post__author-wrap,
    .dh-post__share-wrap { padding: 28px var(--dh-post-px); }
    .dh-post__section-inner { padding: 36px var(--dh-post-px); }
    .dh-post__cta-wrap { padding: 36px var(--dh-post-px); }
    .dh-post__cta { flex-direction: column; align-items: center; }
    .dh-post__nav-inner { grid-template-columns: 1fr; padding: 0 var(--dh-post-px); }
    .dh-post__nav-item--prev { border-right: none; border-bottom: 1px solid #e8e8e8; padding-right: 0; }
    .dh-post__nav-item--next { padding-left: 0; flex-direction: row; text-align: left; }
    .dh-post__nav-thumb { display: none; }
    .dh-post__author { flex-direction: column; }
}
