/* ==========================================================================
   Digitalize Hub — Marketing / Media / Nav CSS (P4C-MARKETING-MEDIA-NAV).
   ----------------------------------------------------------------------------
   Scope: every new feature module that didn't have its own dedicated CSS
   file (the original modules like booking/stripe/quote have their own).
   Each block is namespaced under .dh-* so it doesn't leak to other plugins.
   ========================================================================== */

/* ============================================================
   1. Lead Magnet section
   ============================================================ */
.dh-lead-magnet {
    background: var(--bg-alt);
    padding: var(--dh-section-padding, 100px) 0;
    text-align: center;
}
.dh-lead-magnet .dh-section-head { max-width: 720px; margin: 0 auto 40px; }
.dh-lead-magnet .dh-section-sub { color: var(--text-muted); margin-top: 8px; font-size: 1.05em; }

.dh-lead-form {
    max-width: 680px;
    margin: 0 auto;
}
.dh-lead-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.dh-lead-form-row input[type="text"],
.dh-lead-form-row input[type="email"] {
    flex: 1 1 220px;
    min-width: 220px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: border-color 200ms;
}
.dh-lead-form-row input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.dh-lead-form-row .dh-btn { flex: 0 0 auto; padding: 14px 26px; }
.dh-lead-form-note {
    margin-top: 12px;
    font-size: 0.85em;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .dh-lead-form-row { flex-direction: column; }
    .dh-lead-form-row input,
    .dh-lead-form-row .dh-btn { width: 100%; }
}

/* ============================================================
   2. Exit-Intent popup
   ============================================================ */
.dh-exit-intent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.dh-exit-intent[hidden] { display: none; }
.dh-exit-intent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 20, 0.7);
    backdrop-filter: blur(4px);
}
.dh-exit-intent-card {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg);
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr;
}
.dh-exit-intent-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}
.dh-exit-intent-close:hover { background: rgba(0, 0, 0, 0.12); }
.dh-exit-intent-media { background: var(--bg-alt); }
.dh-exit-intent-media img { width: 100%; height: 220px; object-fit: cover; display: block; }
.dh-exit-intent-body { padding: 32px; }
.dh-exit-intent-title {
    margin: 0 0 8px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
}
.dh-exit-intent-sub {
    margin: 0 0 20px;
    color: var(--text-muted);
    line-height: 1.5;
}
.dh-exit-intent-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.dh-exit-intent-form input[type="email"] {
    flex: 1 1 200px;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
}
.dh-exit-intent-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.dh-exit-intent-form .dh-btn { flex: 0 0 auto; }
.dh-exit-intent-note {
    margin: 12px 0 0;
    font-size: 0.8em;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .dh-exit-intent-card.has-media { grid-template-columns: 200px 1fr; }
    .dh-exit-intent-card.has-media .dh-exit-intent-media img { height: 100%; }
}

/* Dark mode */
html.dh-mode-dark .dh-exit-intent-close,
body.dh-mode-dark .dh-exit-intent-close { background: rgba(255, 255, 255, 0.06); }

/* ============================================================
   3. A/B Testing admin bar (back-end only)
   ============================================================ */
.dh-ab-bar {
    height: 18px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    width: 100px;
    vertical-align: middle;
}
.dh-ab-bar-fill {
    height: 100%;
    background: var(--accent, #d8402a);
    transition: width 400ms;
}

/* ============================================================
   4. Sticky section navigation
   ============================================================ */
.dh-sticky-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
}
.dh-sticky-nav.is-visible { opacity: 1; pointer-events: auto; }
.dh-sticky-nav[hidden] { display: none; }

.dh-sticky-nav-list {
    list-style: none;
    margin: 0;
    padding: 14px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dh-sticky-nav-item { display: flex; }
.dh-sticky-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 200ms;
}
.dh-sticky-nav-dot:hover { border-color: var(--accent); }
.dh-sticky-nav-item.is-active .dh-sticky-nav-dot {
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.2);
}
.dh-sticky-nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dh-sticky-nav-toggle span,
.dh-sticky-nav-toggle span::before,
.dh-sticky-nav-toggle span::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: var(--text);
    transition: transform 200ms;
    position: relative;
}
.dh-sticky-nav-toggle span::before { position: absolute; top: -5px; left: 0; }
.dh-sticky-nav-toggle span::after  { position: absolute; top: 5px; left: 0; }
.dh-sticky-nav.is-collapsed .dh-sticky-nav-list { display: none; }

@media (max-width: 768px) {
    /* On mobile: bottom bar instead of right sidebar. */
    .dh-sticky-nav {
        right: auto;
        left: 50%;
        bottom: 80px;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
    }
    .dh-sticky-nav-list {
        flex-direction: row;
        padding: 8px 14px;
        gap: 12px;
    }
    .dh-sticky-nav-toggle { display: none; }
}

/* ============================================================
   5. Mega menu — MOVED to assets/css/main.css per P4E-NAV item 19
   ------------------------------------------------------------
   The mega-menu rules now live in main.css (loaded globally by
   functions.php dh_enqueue_main_assets()) so the spec's
   "CSS in assets/css/main.css (full-width dropdown, grid layout)"
   requirement is satisfied and the rules are always available
   whenever a `mega` location menu is rendered. See main.css
   section "P4E-NAV item 19 — Mega menu".
   ============================================================ */

/* ============================================================
   6. Cookie consent (v2 — category-based)
   ============================================================ */
.dh-cookie-v2 {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 640px;
    margin: 0 auto;
    z-index: 9998;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    padding: 18px 22px;
    color: var(--text);
}
.dh-cookie-v2 .dh-cookie-body { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.dh-cookie-v2 .dh-cookie-text { margin: 0; font-size: 0.95em; line-height: 1.5; max-width: 380px; }
.dh-cookie-v2 .dh-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.dh-cookie-v2 .dh-cookie-link {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9em;
    padding: 8px 10px;
    text-decoration: underline;
}
.dh-cookie-v2 .dh-cookie-link:hover { color: var(--accent); }

.dh-cookie-modal[hidden] { display: none; }
.dh-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dh-cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 20, 0.7);
}
.dh-cookie-modal-card {
    position: relative;
    z-index: 2;
    background: var(--bg);
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    max-width: 560px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
}
.dh-cookie-modal-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dh-cookie-modal-title { margin: 0; font-size: 1.2rem; font-family: var(--font-heading); }
.dh-cookie-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
}
.dh-cookie-modal-close:hover { background: rgba(0, 0, 0, 0.12); }
.dh-cookie-categories { list-style: none; margin: 0; padding: 16px 24px; }
.dh-cookie-category {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.dh-cookie-category:last-child { border-bottom: none; }
.dh-cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.dh-cookie-category-label { font-weight: 600; }
.dh-cookie-category-label small { font-weight: 400; color: var(--text-muted); font-size: 0.85em; }
.dh-cookie-category-desc { margin: 0; font-size: 0.9em; color: var(--text-muted); line-height: 1.5; }

.dh-cookie-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 22px;
    flex: 0 0 auto;
}
.dh-cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.dh-cookie-switch-track {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 22px;
    transition: background 200ms;
}
.dh-cookie-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--bg);
    border-radius: 50%;
    transition: transform 200ms;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.dh-cookie-switch input:checked + .dh-cookie-switch-track { background: var(--accent); }
.dh-cookie-switch input:checked + .dh-cookie-switch-track .dh-cookie-switch-thumb { transform: translateX(18px); }
.dh-cookie-switch.is-locked { opacity: 0.7; cursor: not-allowed; }

.dh-cookie-modal-foot {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 640px) {
    .dh-cookie-v2 { left: 8px; right: 8px; bottom: 8px; padding: 14px; }
    .dh-cookie-v2 .dh-cookie-body { flex-direction: column; align-items: stretch; }
    .dh-cookie-v2 .dh-cookie-actions { justify-content: stretch; }
    .dh-cookie-v2 .dh-cookie-link,
    .dh-cookie-v2 .dh-cookie-actions .dh-btn { flex: 1; text-align: center; }
}

/* ============================================================
   7. Gallery filter enhancement: search input + sort dropdown + "show all"
   ============================================================ */
.dh-gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dh-gallery-search {
    flex: 1 1 220px;
    min-width: 220px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95em;
}
.dh-gallery-search:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.dh-gallery-sort {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95em;
    cursor: pointer;
}
.dh-gallery-show-all-lightbox {
    padding: 10px 18px;
    background: var(--bg-card);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 150ms;
}
.dh-gallery-show-all-lightbox:hover {
    background: var(--accent);
    color: var(--bg);
}
.dh-gallery-item.is-filter-hidden { display: none !important; }

/* ============================================================
   8. Before/after slider (2-up layout)
   ============================================================ */
.dh-gallery--before-after-2up .dh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--dh-gallery-cols, 2), 1fr);
    gap: 18px;
}
.dh-ba-2up-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-alt);
    cursor: ew-resize;
    user-select: none;
}
.dh-ba-2up-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.dh-ba-2up-after {
    z-index: 1;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 80ms linear;
}
.dh-ba-2up-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.dh-ba-2up-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.dh-ba-2up-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    font-weight: 500;
    pointer-events: none;
    z-index: 2;
}
.dh-ba-2up-label-before { left: 12px; }
.dh-ba-2up-label-after  { right: 12px; z-index: 2; }

/* ============================================================
   9. Reading progress bar (per section) — MOVED to assets/css/main.css
   ------------------------------------------------------------
   Per P4E-NAV item 21 spec, this is "purely additive (no new
   theme_mods)" so it must ALWAYS load — moved to main.css so it's
   available even when lead-capture / sticky-nav / cookie-consent
   are all toggled off (which would otherwise leave marketing-media-
   nav.css unloaded).
   ============================================================ */

/* ============================================================
   10. Back-to-top "Next section" hint — MOVED to assets/css/main.css
   ------------------------------------------------------------
   Same rationale as item 21 above — always-on additive feature,
   so the CSS lives in main.css.
   ============================================================ */

/* ============================================================
   11. Video CPT (single + archive)
   ============================================================ */
.dh-single-video .dh-video-player-wrap {
    max-width: 1100px;
    margin: 0 auto 30px;
}
.dh-video-player.dh-video-self-hosted,
.dh-video-player.dh-video-oembed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    background: #000;
    border: none;
    display: block;
}
.dh-video-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: var(--radius);
}
.dh-video-content { max-width: 760px; margin: 0 auto 40px; line-height: 1.7; }
.dh-video-content .dh-video-excerpt {
    font-size: 1.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.dh-video-chapters { max-width: 760px; margin: 0 auto 30px; }
.dh-video-chapters .dh-h3 { margin: 0 0 16px; }
.dh-video-chapters-list { list-style: none; padding: 0; margin: 0; }
.dh-video-chapter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background 150ms;
}
.dh-video-chapter:hover { background: var(--bg-alt); }
.dh-video-chapter-time {
    background: var(--accent-soft);
    color: var(--accent);
    border: none;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.9em;
    cursor: pointer;
    font-weight: 600;
    flex: 0 0 auto;
    min-width: 70px;
    text-align: center;
}
.dh-video-chapter-time:hover { background: var(--accent); color: var(--bg); }
.dh-video-chapter-label { color: var(--text); }

.dh-video-transcript { max-width: 760px; margin: 0 auto 40px; }
.dh-video-transcript details {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.dh-video-transcript summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-heading);
}
.dh-video-transcript-body {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.dh-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.dh-video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms;
}
.dh-video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); }
.dh-video-card-link { display: block; color: inherit; text-decoration: none; }
.dh-video-card-thumb { position: relative; aspect-ratio: 16/9; background: var(--bg-alt); overflow: hidden; }
.dh-video-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dh-video-card-thumb-empty {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
}
.dh-video-card-thumb-empty svg { width: 48px; height: 48px; }
.dh-video-card-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent, #d8402a);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms;
}
.dh-video-card:hover .dh-video-card-play { opacity: 1; }
.dh-video-card-play svg { width: 24px; height: 24px; }
.dh-video-card-body { padding: 16px 18px; }
.dh-video-card-title { margin: 0 0 6px; font-size: 1.1rem; font-family: var(--font-heading); }
.dh-video-card-excerpt { margin: 0; font-size: 0.9em; color: var(--text-muted); }

/* ============================================================
   12. Gallery Set CPT (single + archive)
   ============================================================ */
.dh-single-gallery-set .dh-gallery-set-grid {
    margin-top: 30px;
}
.dh-gallery-set-card .dh-gallery-set-card-link { display: block; color: inherit; text-decoration: none; }
.dh-gallery-set-card .dh-gallery-set-card-thumb {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    overflow: hidden;
    border-radius: var(--radius);
}
.dh-gallery-set-card .dh-gallery-set-card-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 400ms;
}
.dh-gallery-set-card:hover .dh-gallery-set-card-thumb img { transform: scale(1.05); }
.dh-gallery-set-card-thumb-empty {
    width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 10px, var(--bg-card) 10px, var(--bg-card) 20px);
}
.dh-gallery-set-card-count {
    position: absolute;
    bottom: 10px; right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    font-weight: 500;
}
.dh-gallery-set-card-body { padding: 16px 0; }
.dh-gallery-set-card-title { margin: 0 0 4px; font-size: 1.2rem; font-family: var(--font-heading); }
.dh-gallery-set-card-excerpt { margin: 0; font-size: 0.9em; color: var(--text-muted); }

.dh-gallery-set-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* ============================================================
   13. Admin-side gallery-set meta box styles
   ============================================================ */
.dh-gallery-set-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}
.dh-gallery-set-thumb {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    cursor: move;
}
.dh-gallery-set-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    pointer-events: none;
}
.dh-gallery-set-thumb.is-dragging { opacity: 0.5; }
.dh-gallery-set-thumb:hover .dh-gallery-set-remove { opacity: 1; }
.dh-gallery-set-remove {
    position: absolute;
    top: 4px; right: 4px;
    width: 22px; height: 22px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity 150ms;
}
.dh-gallery-set-remove:hover { background: #d63638; }

/* ============================================================
   14. Pagination (shared by video + gallery-set archives)
   ============================================================ */
.dh-pagination {
    text-align: center;
    margin: 40px 0;
}
.dh-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
}
.dh-pagination .page-numbers.current {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}
.dh-pagination .page-numbers:hover:not(.current) {
    background: var(--bg-alt);
}
