/* ==========================================================================
   WebcuBlog — Storefront styles (Ratgeber design)
   ==========================================================================
   Self-contained and fully scoped under `.webcu-blog`:
   - This file is loaded ONLY on blog pages (linked from _blog-base.html.twig),
     so it cannot affect the rest of the shop.
   - Every rule is nested under `.webcu-blog`, and the design tokens live on the
     `.webcu-blog` scope (NOT :root) — so the blog never leaks styles onto the
     shop chrome (header/footer/newsletter) that is rendered on the same page.
   - Tokens mirror WebcuKahrsTheme/_tokens.scss (Markenkit 2.0). Fonts are
     provided by the active theme (self-hosted Manrope/Inter/Playfair); we only
     reference the family names and fall back to system-ui.

   Source design: ClaudeCode/HHD Blog Design.zip → styles/blog.css.
   Section order: tokens → base → home (hero, sections, cards, youtube, split).
   ========================================================================== */

.webcu-blog {
    /* ---------- brand colours ---------- */
    --hhd-primary-1: #26382a;
    --hhd-primary-2: #547441;
    --hhd-secondary-1: #9cb485;
    --hhd-secondary-2: #f4f1e9;
    --hhd-secondary-3: #2e2e2e;

    --hhd-ui-white: #ffffff;
    --hhd-ui-detail-btn: #f5f5f2;
    --hhd-ui-line: #e0e0e0;

    --hhd-type-heading: #1a2c1e;
    --hhd-type-subheading: #557a3f;
    --hhd-type-body: #1a2c1e;
    --hhd-type-secondary: #4a4a4a;
    --hhd-type-on-dark: #ffffff;
    --hhd-type-on-dark-alt: #f6f3ef;
    --hhd-bg-dark: #1a2c1e;

    --hhd-fg1: var(--hhd-type-body);
    --hhd-fg2: var(--hhd-type-secondary);
    --hhd-bg1: #ffffff;
    --hhd-bg2: var(--hhd-secondary-2);
    --hhd-border: var(--hhd-ui-line);
    --hhd-accent: var(--hhd-primary-2);
    --hhd-link: var(--hhd-primary-2);

    /* ---------- fonts (families from the theme; system fallback) ---------- */
    --hhd-font-heading: 'Manrope', system-ui, sans-serif;
    --hhd-font-body: 'Inter', system-ui, sans-serif;
    --hhd-font-display: 'Playfair Display', Georgia, serif;

    /* ---------- elevation + motion ---------- */
    --hhd-shadow-sm: 0 1px 2px rgba(26, 44, 30, 0.06);
    --hhd-shadow-md: 0 4px 12px rgba(26, 44, 30, 0.08);
    --hhd-shadow-lg: 0 10px 28px rgba(26, 44, 30, 0.12);
    --hhd-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

    font-family: var(--hhd-font-body);
    color: var(--hhd-fg1);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Neutralise inherited theme link styling inside the blog content; specific
   blog links below opt back in to colour where needed. */
.webcu-blog a {
    color: inherit;
    text-decoration: none;
}

/* Content container — the blog renders full-width (base_main_inner is overridden
   to drop the shop .container), so we centre and cap the width ourselves. */
.webcu-blog .blog-main {
    max-width: min(1440px, 94vw);
    margin: 0 auto;
    padding: 0 32px 80px;
}

/* ==========================================================================
   Placeholder image (fallback when a post has no featured media)
   ========================================================================== */
.webcu-blog .ph-img {
    position: relative;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--tone, var(--hhd-primary-2)) 70%, #fff) 0%, var(--tone, var(--hhd-primary-2)) 55%, color-mix(in srgb, var(--tone, var(--hhd-primary-2)) 80%, #000) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.webcu-blog .ph-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 9px),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
    mix-blend-mode: overlay;
}
.webcu-blog .ph-img svg {
    width: 30px;
    height: 30px;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 1;
}
/* Real images fill the same boxes as the placeholder. */
.webcu-blog .bl-card-img img,
.webcu-blog .blog-hero-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.webcu-blog .blog-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0 8px;
}
.webcu-blog .blog-hero-left {
    display: flex;
    flex-direction: column;
}
.webcu-blog .blog-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hhd-primary-2);
}
.webcu-blog .hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--hhd-secondary-1);
}
.webcu-blog .blog-hero h1 {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 46px;
    line-height: 1.05;
    color: var(--hhd-type-heading);
    margin: 16px 0 16px;
    letter-spacing: -0.025em;
}
.webcu-blog .blog-hero p {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--hhd-type-secondary);
    margin: 0 0 22px;
    max-width: 460px;
}
.webcu-blog .blog-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.webcu-blog .blog-hero-tags a {
    font-size: 13px;
    font-weight: 600;
    color: var(--hhd-primary-1);
    background: var(--hhd-secondary-2);
    padding: 7px 14px;
    border-radius: 3px;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .blog-hero-tags a:hover {
    background: #e7e3d8;
}

.webcu-blog .blog-hero-feature {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    border-radius: 3px;
    overflow: hidden;
}
.webcu-blog .blog-hero-feature .ph-img svg {
    width: 44px;
    height: 44px;
}
.webcu-blog .blog-hero-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(15, 22, 16, 0.82) 0%, rgba(15, 22, 16, 0.25) 45%, transparent 75%);
}
.webcu-blog .bhf-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    color: #fff;
}
.webcu-blog .bhf-badge {
    display: inline-block;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 5px 11px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.webcu-blog .bhf-overlay h2 {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 26px;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    max-width: 90%;
}
.webcu-blog .bhf-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: #fff;
    transition: gap 0.15s var(--hhd-ease);
}
.webcu-blog .bhf-link svg {
    width: 16px;
    height: 16px;
}
.webcu-blog .blog-hero-feature:hover .bhf-link {
    gap: 11px;
}

/* ==========================================================================
   Section header
   ========================================================================== */
.webcu-blog .blog-section {
    margin-top: 56px;
}
.webcu-blog .blog-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.webcu-blog .blog-section-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--hhd-type-heading);
    letter-spacing: -0.015em;
    margin: 0;
}
.webcu-blog .sh-accent {
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: var(--hhd-primary-2);
}
.webcu-blog .sh-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--hhd-primary-2);
    transition: gap 0.15s var(--hhd-ease);
}
.webcu-blog .sh-all svg {
    width: 15px;
    height: 15px;
}
.webcu-blog .sh-all:hover {
    gap: 9px;
}

/* ==========================================================================
   Article cards + grids
   ========================================================================== */
.webcu-blog .bl-grid--3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.webcu-blog .bl-grid--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.webcu-blog .bl-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hhd-ui-line);
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.2s var(--hhd-ease), transform 0.2s var(--hhd-ease);
}
.webcu-blog .bl-card:hover {
    box-shadow: var(--hhd-shadow-md);
    transform: translateY(-3px);
}
.webcu-blog .bl-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
}
.webcu-blog .bl-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: var(--hhd-primary-1);
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 3px;
}
.webcu-blog .bl-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.webcu-blog .bl-card-date {
    font-size: 12px;
    color: var(--hhd-type-secondary);
}
.webcu-blog .bl-card-body h3 {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    color: var(--hhd-type-heading);
    margin: 0;
}
.webcu-blog .bl-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--hhd-type-secondary);
    margin: 0;
    flex: 1;
}
.webcu-blog .bl-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--hhd-primary-2);
    transition: gap 0.15s var(--hhd-ease);
}
.webcu-blog .bl-card-link svg {
    width: 15px;
    height: 15px;
}
.webcu-blog .bl-card:hover .bl-card-link {
    gap: 9px;
}

/* "Beliebte Beiträge": horizontal cards */
.webcu-blog .bl-grid--2 .bl-card {
    flex-direction: row;
}
.webcu-blog .bl-grid--2 .bl-card-img {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: auto;
}

/* ==========================================================================
   YouTube banner
   ========================================================================== */
.webcu-blog .blog-youtube {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--hhd-bg-dark);
    border-radius: 3px;
    padding: 28px 32px;
    color: #fff;
}
.webcu-blog .blog-yt-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.webcu-blog .blog-yt-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.webcu-blog .blog-yt-text {
    flex: 1;
}
.webcu-blog .blog-yt-eyebrow {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hhd-secondary-1);
}
.webcu-blog .blog-yt-text h3 {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 20px;
    margin: 4px 0 4px;
    color: #fff;
}
.webcu-blog .blog-yt-text p {
    font-size: 14px;
    color: var(--hhd-type-on-dark-alt);
    margin: 0;
}
.webcu-blog .blog-yt-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hhd-secondary-1);
    color: var(--hhd-primary-1);
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 3px;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .blog-yt-btn:hover {
    background: #fff;
}
.webcu-blog .blog-yt-btn svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Split: about box + lexikon list
   ========================================================================== */
.webcu-blog .blog-split {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}
/* No lexikon configured → single column, about box not sticky and width-capped. */
.webcu-blog .blog-split--solo {
    grid-template-columns: 1fr;
}
.webcu-blog .blog-split--solo .blog-about {
    position: static;
    max-width: 760px;
}
.webcu-blog .blog-about {
    background: var(--hhd-secondary-2);
    border-radius: 3px;
    padding: 28px;
    position: sticky;
    top: 96px;
}
.webcu-blog .blog-about-eyebrow {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hhd-primary-2);
}
.webcu-blog .blog-about h3 {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--hhd-type-heading);
    margin: 8px 0 10px;
}
.webcu-blog .blog-about p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--hhd-type-body);
    margin: 0 0 16px;
}
.webcu-blog .blog-about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--hhd-primary-2);
    transition: gap 0.15s var(--hhd-ease);
}
.webcu-blog .blog-about-link svg {
    width: 15px;
    height: 15px;
}
.webcu-blog .blog-about-link:hover {
    gap: 9px;
}

.webcu-blog .bl-lex-list {
    display: flex;
    flex-direction: column;
}
.webcu-blog .bl-lex-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 8px;
    border-bottom: 1px solid var(--hhd-ui-line);
    transition: background 0.12s var(--hhd-ease);
}
.webcu-blog .bl-lex-row:hover {
    background: var(--hhd-secondary-2);
}
.webcu-blog .bl-lex-thumb {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 3px;
    background: var(--hhd-secondary-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.webcu-blog .bl-lex-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.webcu-blog .bl-lex-thumb svg {
    width: 22px;
    height: 22px;
    color: var(--hhd-primary-2);
}
.webcu-blog .bl-lex-body {
    flex: 1;
    min-width: 0;
}
.webcu-blog .bl-lex-meta {
    font-size: 11.5px;
    color: var(--hhd-type-secondary);
}
.webcu-blog .bl-lex-body h4 {
    font-family: var(--hhd-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--hhd-type-heading);
    margin: 2px 0 0;
}
.webcu-blog .bl-lex-chev {
    width: 18px;
    height: 18px;
    color: var(--hhd-type-secondary);
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .webcu-blog .blog-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 8px;
    }
    .webcu-blog .blog-hero h1 {
        font-size: 34px;
    }
    .webcu-blog .bl-grid--3,
    .webcu-blog .bl-grid--2,
    .webcu-blog .blog-split {
        grid-template-columns: 1fr;
    }
    .webcu-blog .blog-youtube {
        flex-direction: column;
        text-align: center;
    }
    .webcu-blog .blog-about {
        position: static;
    }
}

@media (max-width: 600px) {
    .webcu-blog .blog-main {
        padding: 0 16px 56px;
    }
    .webcu-blog .bl-grid--2 .bl-card {
        flex-direction: column;
    }
    .webcu-blog .bl-grid--2 .bl-card-img {
        width: 100%;
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================================================
   Category page (breadcrumb, hero, intro + contact box, pagination)
   ========================================================================== */
.webcu-blog .blog-cat-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 0 12px;
    font-size: 12.5px;
    color: var(--hhd-type-secondary);
}
.webcu-blog .blog-cat-crumb a {
    color: var(--hhd-type-secondary);
}
.webcu-blog .blog-cat-crumb a:hover {
    color: var(--hhd-primary-1);
}
.webcu-blog .blog-cat-crumb span:last-child {
    color: var(--hhd-primary-1);
    font-weight: 600;
}
.webcu-blog .blog-cat-crumb svg {
    width: 13px;
    height: 13px;
    opacity: 0.5;
}

/* Hero — real (extracted) header image fills the box; dark gradient + text on top. */
.webcu-blog .blog-cat-hero {
    position: relative;
    /* Pin the width: with aspect-ratio + min-height and no explicit width, narrow viewports
       derive the width from the forced min-height (260px x 24/8 = 780px) and overflow the page. */
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 24 / 8;
    min-height: 260px;
}
.webcu-blog .blog-cat-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.webcu-blog .blog-cat-hero .ph-img {
    position: absolute;
    inset: 0;
}
.webcu-blog .blog-cat-hero .ph-img svg {
    width: 48px;
    height: 48px;
}
.webcu-blog .blog-cat-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(15, 22, 16, 0.85) 0%, rgba(15, 22, 16, 0.35) 55%, rgba(15, 22, 16, 0.15) 100%);
}
.webcu-blog .blog-cat-hero-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 36px 40px;
    color: #fff;
    max-width: 720px;
}
.webcu-blog .blog-cat-hero-overlay h1 {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    color: #fff;
}
.webcu-blog .blog-cat-hero-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--hhd-type-on-dark-alt);
    max-width: 620px;
}

/* Intro text + sticky contact box */
.webcu-blog .blog-cat-intro {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.webcu-blog .blog-cat-intro--solo {
    grid-template-columns: 1fr;
}
.webcu-blog .blog-cat-intro--solo .blog-cat-intro-text {
    max-width: 820px;
}
.webcu-blog .blog-cat-intro-text p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--hhd-type-body);
    margin: 0 0 16px;
}
.webcu-blog .blog-cat-intro-text p:last-child {
    margin-bottom: 0;
}
.webcu-blog .blog-cat-intro-text h2,
.webcu-blog .blog-cat-intro-text h3 {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    color: var(--hhd-type-heading);
    margin: 24px 0 10px;
}
.webcu-blog .blog-cat-intro-text h2 {
    font-size: 22px;
}
.webcu-blog .blog-cat-intro-text h3 {
    font-size: 18px;
}
.webcu-blog .blog-cat-intro-text a {
    color: var(--hhd-primary-2);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.webcu-blog .blog-cat-intro-text a:hover {
    color: var(--hhd-primary-1);
}
.webcu-blog .blog-cat-intro-text img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    margin: 12px 0;
}
.webcu-blog .blog-cat-intro-text ul,
.webcu-blog .blog-cat-intro-text ol {
    margin: 0 0 16px;
    padding-left: 22px;
}
.webcu-blog .blog-cat-intro-text li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hhd-type-body);
    margin-bottom: 6px;
}

.webcu-blog .blog-cat-contact {
    background: var(--hhd-secondary-2);
    border-radius: 3px;
    padding: 28px;
    position: sticky;
    top: 96px;
}
.webcu-blog .bcc-icon {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    background: var(--hhd-primary-1);
    color: var(--hhd-secondary-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.webcu-blog .bcc-icon svg {
    width: 22px;
    height: 22px;
}
.webcu-blog .blog-cat-contact h3 {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--hhd-type-heading);
    margin: 0 0 10px;
    line-height: 1.25;
}
.webcu-blog .blog-cat-contact p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--hhd-type-secondary);
    margin: 0 0 16px;
}
.webcu-blog .bcc-mail {
    display: block;
    font-weight: 600;
    color: var(--hhd-primary-2);
    font-size: 14px;
    margin-bottom: 18px;
    word-break: break-all;
}
.webcu-blog .bcc-mail:hover {
    color: var(--hhd-primary-1);
}
.webcu-blog .bcc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--hhd-primary-1);
    color: #fff;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 11px 18px;
    border-radius: 3px;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .bcc-btn:hover {
    background: var(--hhd-primary-2);
}
.webcu-blog .bcc-btn svg {
    width: 15px;
    height: 15px;
}

.webcu-blog .blog-cat-count {
    font-size: 13px;
    color: var(--hhd-type-secondary);
    font-weight: 600;
}

/* Pagination — own, design-matched (links with ?p=N) */
.webcu-blog .blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.webcu-blog .blog-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--hhd-ui-line);
    border-radius: 3px;
    background: #fff;
    color: var(--hhd-type-body);
    font-family: var(--hhd-font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s var(--hhd-ease), border-color 0.15s var(--hhd-ease);
}
.webcu-blog .blog-page-link:hover {
    background: var(--hhd-secondary-2);
    border-color: var(--hhd-primary-2);
}
.webcu-blog .blog-page-link.is-active {
    background: var(--hhd-primary-1);
    border-color: var(--hhd-primary-1);
    color: #fff;
    pointer-events: none;
}
.webcu-blog .blog-page-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: var(--hhd-type-secondary);
}

@media (max-width: 900px) {
    .webcu-blog .blog-cat-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .webcu-blog .blog-cat-contact {
        position: static;
    }
    .webcu-blog .blog-cat-hero-overlay {
        padding: 24px;
    }
    .webcu-blog .blog-cat-hero-overlay h1 {
        font-size: 30px;
    }
}

/* ==========================================================================
   Article (detail) page
   ========================================================================== */
.webcu-blog .article-head {
    margin: 22px 0 0;
}
.webcu-blog .article-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hhd-primary-2);
}
.webcu-blog .article-cat-badge .hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--hhd-secondary-1);
}
.webcu-blog .article-head h1 {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--hhd-type-heading);
    margin: 16px 0 18px;
    text-wrap: balance;
}
.webcu-blog .article-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--hhd-type-secondary);
    margin: 0 0 26px;
    text-wrap: pretty;
}
.webcu-blog .article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--hhd-ui-line);
}
.webcu-blog .article-author {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}
.webcu-blog .article-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    flex-shrink: 0;
    background: var(--hhd-primary-1);
    color: var(--hhd-secondary-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 15px;
}
.webcu-blog .article-author-name {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--hhd-type-heading);
    white-space: nowrap;
}
.webcu-blog .article-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--hhd-ui-line);
}
.webcu-blog .article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--hhd-type-secondary);
}
.webcu-blog .article-meta-item svg {
    width: 15px;
    height: 15px;
    opacity: 0.7;
}

.webcu-blog .article-hero {
    /* TEMP (2026-06-18, user request): featured banner hidden on all article pages.
       Set `display` back to `flex` to restore the letter-boxed banner. */
    display: none;
    margin: 0 0 28px;
    border-radius: 3px;
    overflow: hidden;
    height: 340px;
    background: var(--hhd-secondary-2);
    align-items: center;
    justify-content: center;
}
/* Never upscale the (often small) featured image — show it sharp, centred, letter-boxed. */
.webcu-blog .article-hero img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.webcu-blog .article-layout {
    margin-top: 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: start;
}
.webcu-blog .article-main {
    min-width: 0;
}

/* --- Body typography (applies to the enhanced WordPress HTML) --- */
.webcu-blog .article-body {
    min-width: 0;
}
.webcu-blog .article-body p {
    font-size: 17px;
    line-height: 1.78;
    color: var(--hhd-type-body);
    margin: 0 0 22px;
    text-wrap: pretty;
}
.webcu-blog .article-body h2 {
    clear: both;
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--hhd-type-heading);
    margin: 44px 0 16px;
    scroll-margin-top: 90px;
}
.webcu-blog .article-body h3 {
    clear: both;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 19px;
    color: var(--hhd-type-heading);
    margin: 28px 0 10px;
    scroll-margin-top: 90px;
}
.webcu-blog .article-body a {
    color: var(--hhd-primary-2);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.webcu-blog .article-body a:hover {
    color: var(--hhd-primary-1);
}
.webcu-blog .article-body strong {
    font-weight: 700;
    color: var(--hhd-type-heading);
}
.webcu-blog .article-body ul,
.webcu-blog .article-body ol {
    margin: 0 0 22px;
    padding-left: 24px;
}
.webcu-blog .article-body li {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--hhd-type-body);
    margin-bottom: 8px;
}
.webcu-blog .article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 15px;
}
.webcu-blog .article-body th,
.webcu-blog .article-body td {
    border: 1px solid var(--hhd-ui-line);
    padding: 10px 12px;
    text-align: left;
}
.webcu-blog .article-body th {
    background: var(--hhd-secondary-2);
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    color: var(--hhd-type-heading);
}

/* Pull quote */
.webcu-blog .article-quote {
    clear: both;
    margin: 36px 0;
    padding: 4px 0 4px 28px;
    border-left: 4px solid var(--hhd-secondary-1);
}
.webcu-blog .article-quote p {
    font-family: var(--hhd-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.45;
    color: var(--hhd-type-heading);
    margin: 0 0 10px;
}
.webcu-blog .article-quote cite {
    font-style: normal;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hhd-type-secondary);
}

/* --- Inline table of contents (the embedded WordPress "Inhaltsverzeichnis" box) --- */
.webcu-blog .article-toc-inline {
    margin: 26px 0 34px;
    padding: 20px 26px;
    background: #f0f7ed;
    border-left: 4px solid var(--hhd-primary-2);
    border-radius: 3px;
}
.webcu-blog .article-toc-inline-title {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hhd-type-heading);
    margin: 0 0 12px;
}
.webcu-blog .article-toc-inline ol,
.webcu-blog .article-toc-inline ul {
    margin: 0;
    padding-left: 20px;
}
.webcu-blog .article-toc-inline li {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--hhd-type-body);
}
.webcu-blog .article-toc-inline a {
    color: var(--hhd-primary-2);
    text-decoration: none;
}
.webcu-blog .article-toc-inline a:hover {
    text-decoration: underline;
}

/* --- End-of-article product slider (the shop products linked in the post) --- */
.webcu-blog .article-products {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--hhd-ui-line);
}
.webcu-blog .article-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.webcu-blog .article-products-title {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--hhd-type-heading);
    margin: 0;
}
.webcu-blog .article-products-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.webcu-blog .aps-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hhd-ui-line);
    background: #fff;
    border-radius: 3px;
    color: var(--hhd-type-heading);
    cursor: pointer;
    transition: background 0.15s var(--hhd-ease), color 0.15s var(--hhd-ease),
        border-color 0.15s var(--hhd-ease), opacity 0.15s var(--hhd-ease);
}
.webcu-blog .aps-btn:hover {
    background: var(--hhd-primary-1);
    color: #fff;
    border-color: var(--hhd-primary-1);
}
.webcu-blog .aps-btn svg {
    width: 18px;
    height: 18px;
}
.webcu-blog .aps-btn:disabled {
    opacity: 0.35;
    cursor: default;
    background: #fff;
    color: var(--hhd-type-heading);
    border-color: var(--hhd-ui-line);
}
.webcu-blog .article-products-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.webcu-blog .article-products-slider::-webkit-scrollbar {
    display: none;
}
.webcu-blog .article-products-slider .cross-card {
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hhd-ui-line);
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: var(--hhd-type-body);
    transition: box-shadow 0.2s var(--hhd-ease), transform 0.2s var(--hhd-ease);
}
.webcu-blog .article-products-slider .cross-card:hover {
    box-shadow: 0 8px 24px rgba(26, 44, 30, 0.10);
    transform: translateY(-3px);
}
/* Visible cards step down on smaller viewports: 3 (default) -> 2 (<=767px) -> 1 (<=479px). */
@media (max-width: 767px) {
    .webcu-blog .article-products-slider .cross-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}
@media (max-width: 479px) {
    .webcu-blog .article-products-slider .cross-card {
        flex-basis: 100%;
    }
}
.webcu-blog .cross-card-img {
    aspect-ratio: 4 / 3;
    background: var(--hhd-secondary-2);
    overflow: hidden;
}
.webcu-blog .cross-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.webcu-blog .cross-card-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px 16px;
    flex: 1;
}
.webcu-blog .cross-card-cat {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--hhd-primary-2);
}
.webcu-blog .cross-card-body h4 {
    margin: 0;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.3;
    color: var(--hhd-type-heading);
}
.webcu-blog .cross-card-foot {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-top: 1px solid var(--hhd-ui-line);
}
.webcu-blog .cross-card-price {
    font-family: var(--hhd-font-heading);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    color: var(--hhd-type-heading);
}
.webcu-blog .cross-card-from {
    font-family: var(--hhd-font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--hhd-type-secondary);
}
.webcu-blog .cross-card-price small {
    font-size: 11px;
    font-weight: 500;
    color: var(--hhd-type-secondary);
}
.webcu-blog .cross-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--hhd-primary-2);
}
.webcu-blog .cross-card-cta svg {
    width: 14px;
    height: 14px;
}

/* --- Article body images: ensure even un-wrapped (bare) images never overflow the
   text column (figure / media-card rules below stay more specific and win). --- */
.webcu-blog .article-body img {
    max-width: 100%;
    height: auto;
}

/* --- Floated images: alternating left/right with text flow --- */
.webcu-blog .article-figure {
    margin: 8px 0 24px;
}
.webcu-blog .article-figure img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 3px;
}
.webcu-blog .article-figure figcaption {
    font-size: 12.5px;
    color: var(--hhd-type-secondary);
    padding: 8px 2px 0;
    font-style: italic;
}
.webcu-blog .article-figure--left,
.webcu-blog .article-figure--right {
    max-width: 46%;
}
.webcu-blog .article-figure--left {
    float: left;
    clear: left;
    margin: 6px 34px 18px 0;
}
.webcu-blog .article-figure--right {
    float: right;
    clear: right;
    margin: 6px 0 18px 34px;
}

/* --- Captioned image: image + caption as an alternating, tinted media card --- */
.webcu-blog .article-media-card {
    clear: both;
    display: flex;
    align-items: stretch;
    margin: 36px 0;
    background: var(--hhd-secondary-2);
    border: 1px solid var(--hhd-ui-line);
    border-radius: 3px;
    overflow: hidden;
}
.webcu-blog .article-media-card--right {
    flex-direction: row-reverse;
}
.webcu-blog .article-media-card-media {
    flex: 0 0 55%;
    min-height: 250px;
}
.webcu-blog .article-media-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.webcu-blog .article-media-card-text {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 28px 34px;
    margin: 0;
    font-family: var(--hhd-font-display);
    font-style: italic;
    font-size: 18.5px;
    line-height: 1.5;
    color: var(--hhd-type-heading);
    text-wrap: pretty;
}

/* --- Tags --- */
.webcu-blog .article-tags {
    clear: both;
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.webcu-blog .article-tags-label {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--hhd-type-heading);
    margin-right: 4px;
}
.webcu-blog .article-tags a {
    font-size: 13px;
    font-weight: 600;
    color: var(--hhd-primary-1);
    background: var(--hhd-secondary-2);
    padding: 7px 14px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .article-tags a:hover {
    background: #e7e3d8;
}

/* --- Sidebar: table of contents --- */
.webcu-blog .article-aside {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.webcu-blog .article-toc-title {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hhd-type-secondary);
    margin: 0 0 14px;
}
.webcu-blog .article-toc {
    display: flex;
    flex-direction: column;
}
.webcu-blog .article-toc a {
    font-size: 14px;
    line-height: 1.4;
    color: var(--hhd-type-body);
    padding: 9px 0 9px 14px;
    border-left: 2px solid var(--hhd-ui-line);
    transition: color 0.15s var(--hhd-ease), border-color 0.15s var(--hhd-ease);
}
.webcu-blog .article-toc a:hover {
    color: var(--hhd-primary-1);
    border-color: var(--hhd-primary-2);
}
.webcu-blog .article-toc a.article-toc-l3 {
    padding-left: 28px;
    font-size: 13px;
    color: var(--hhd-type-secondary);
}

/* --- Sidebar: contact box (mirrors the category page contact card) --- */
.webcu-blog .article-contact {
    padding: 22px 20px;
    border-radius: 3px;
    background: var(--hhd-secondary-2);
    border: 1px solid var(--hhd-ui-line);
}
.webcu-blog .article-contact > *:last-child {
    margin-bottom: 0;
}
.webcu-blog .article-contact-title {
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--hhd-type-heading);
    margin: 0 0 8px;
}
.webcu-blog .article-contact-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--hhd-type-body);
    margin: 0 0 14px;
}
.webcu-blog .article-contact-mail {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hhd-primary-2);
    text-decoration: none;
    margin: 0 0 14px;
}
.webcu-blog .article-contact-mail svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.webcu-blog .article-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border-radius: 3px;
    background: var(--hhd-primary-1);
    color: #fff;
    font-family: var(--hhd-font-heading);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .article-contact-btn:hover {
    background: var(--hhd-primary-2);
}
.webcu-blog .article-contact-btn svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 900px) {
    .webcu-blog .article-head h1 {
        font-size: 32px;
    }
    .webcu-blog .article-lead {
        font-size: 17px;
    }
    .webcu-blog .article-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .webcu-blog .article-aside {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 28px 48px;
    }
    /* The table of contents only helps in the desktop sidebar; once the layout is single-column
       it sits below the already-read article and is redundant -> hide it. Contact box stays. */
    .webcu-blog .article-toc-box {
        display: none;
    }
}

@media (max-width: 600px) {
    .webcu-blog .article-figure--left,
    .webcu-blog .article-figure--right {
        float: none;
        max-width: 100%;
        margin: 18px 0 24px;
    }
    .webcu-blog .article-media-card,
    .webcu-blog .article-media-card--right {
        flex-direction: column;
    }
    .webcu-blog .article-media-card-media {
        flex-basis: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

/* --- Search results page (reuses .blog-main, .bl-grid, .bl-card, .blog-section) --- */
.webcu-blog .blog-search-head {
    margin: 8px 0 30px;
}
.webcu-blog .blog-search-head h1 {
    font-family: var(--hhd-font-display);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    color: var(--hhd-type-heading);
    margin: 0 0 18px;
}
.webcu-blog .blog-search-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.webcu-blog .blog-search-cat {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--hhd-secondary-2);
    color: var(--hhd-primary-1);
    border-radius: 3px;
    font-family: var(--hhd-font-heading);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s var(--hhd-ease);
}
.webcu-blog .blog-search-cat:hover {
    background: #e7e3d8;
}
.webcu-blog .blog-search-more {
    margin-top: 18px;
    font-size: 14px;
    color: var(--hhd-type-secondary);
}

/* ==========================================================================
   Blog navigation bar (shop ESI header) — blog pages ONLY.
   The ONE block intentionally NOT scoped under `.webcu-blog`: this bar renders
   in the shop's ESI header, outside the `.webcu-blog` content wrapper. It stays
   blog-only regardless, because (a) the `.webcu-blog-navbar` class is emitted
   only when webcuBlogActive (navbar.html.twig) and (b) this stylesheet loads
   only on blog pages. `--hhd-*` tokens come from the active theme (:root);
   literal fallbacks keep the bar self-contained.
   ========================================================================== */

/* Bar: drop the theme's top gap, add even vertical padding. */
.cbax-navigation-amazon.webcu-blog-navbar {
    margin-top: 0;
    padding: 15px 0;
}
/* Navbar items never wrap — overflowing categories go into the dropdown instead. */
.cbax-navigation-amazon.webcu-blog-navbar .cbax-main-navigation-link-text {
    white-space: nowrap;
}

/* "To shop" sits at the far right of the flex bar. */
.cbax-navigation-amazon.webcu-blog-navbar .webcu-blog-navbar-link.webcu-blog-navbar-shop {
    margin-left: auto;
}

/* "To shop" — accent pill that stands apart from the plain category links.
   Specificity (0,0,5,0) clears the theme's link-text reset (0,0,4,0). */
.cbax-navigation-amazon.webcu-blog-navbar .webcu-blog-navbar-link.webcu-blog-navbar-shop .cbax-main-navigation-link-text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--hhd-primary-1, #26382a);
    color: var(--hhd-type-on-dark, #fff);
    border-radius: 3px;
    font-family: var(--hhd-font-heading, 'Manrope', system-ui, sans-serif);
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.15s var(--hhd-ease, ease);
}
.cbax-navigation-amazon.webcu-blog-navbar .webcu-blog-navbar-link.webcu-blog-navbar-shop .webcu-blog-navbar-shop-icon {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.cbax-navigation-amazon.webcu-blog-navbar .webcu-blog-navbar-link.webcu-blog-navbar-shop:hover .cbax-main-navigation-link-text {
    background: var(--hhd-primary-2, #547441);
    color: #fff;
}

/* "Weitere Kategorien" overflow dropdown — toggled by the priority-nav JS. Hidden until
   the JS marks it .is-visible (i.e. when categories don't fit), then opens on hover. */
.webcu-blog-navbar-more {
    position: relative;
    display: none;
    align-items: center;
}
.webcu-blog-navbar-more.is-visible {
    display: flex;
}
.webcu-blog-navbar-more-toggle {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
.webcu-blog-navbar-more-toggle .cbax-main-navigation-link-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.webcu-blog-navbar-more-toggle .webcu-blog-navbar-more-icon {
    width: 15px;
    height: 15px;
    margin-left: 5px;
    flex-shrink: 0;
}
.webcu-blog-navbar-more-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 210px;
    margin-top: 4px;
    padding: 6px 0;
    background: #fff;
    border: 1px solid var(--hhd-ui-line, #e0e0e0);
    border-radius: 3px;
    box-shadow: var(--hhd-shadow-md, 0 4px 12px rgba(26, 44, 30, 0.08));
    display: none;
}
/* Invisible hover bridge spanning the 4px margin gap between toggle and dropdown,
   so moving the cursor down into the menu doesn't drop :hover and close it. */
.webcu-blog-navbar-more-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
}
.webcu-blog-navbar-more:hover .webcu-blog-navbar-more-menu,
.webcu-blog-navbar-more:focus-within .webcu-blog-navbar-more-menu {
    display: block;
}
.webcu-blog-navbar-more-link {
    display: block;
    padding: 8px 18px;
    font-family: var(--hhd-font-body, system-ui, sans-serif);
    font-size: 14px;
    line-height: 1.3;
    color: var(--hhd-secondary-dark, #2e2e2e);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.12s ease, color 0.12s ease;
}
.webcu-blog-navbar-more-link:hover {
    background: var(--hhd-secondary-2, #f4f1e9);
    color: var(--hhd-primary-1, #26382a);
}

/* Vertical-alignment fine-tuning of the bar within the shop's `.nav-main` wrapper.
   Blog-only: this stylesheet loads only on blog pages, so `.nav-main` here can only
   match the blog navbar's wrapper. */
@media (min-width: 576px) {
    .nav-main {
        padding-bottom: 0;
    }
}
.webcu-blog-navbar-shop {
    margin-top: -7px;
    padding-right: 0;
}
.webcu-blog-navbar-more {
    font-size: 15px;
    margin-top: -1px;
}
