
.fp-featured {
}

.fp-featured .fp-featured__image img {
    border-radius:15px;
}
.fp-featured h2 {
    margin: .55em 0;
    font-size:52px;
}

.fp-list h3 a,
.fp-featured h2 a {
    text-decoration:none;
    color:#000;
}

.fp-list h3 a:hover,
.fp-featured h2 a:hover {
    text-decoration: underline;
    color: #0073e5;
}

.fp-list {
    margin:8em 0;
}

.fp-item {
    margin:1.85em 0;
}

.fp-item h3{
    margin: 0;                 /* Genesis/Theme-Margins killen */
    display: flex;
    align-items: flex-start;   /* top aligned */
    gap: 12px;
}

.fp-item .fp-date{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    line-height: 1;            /* verhindert "unsichtbare" Höhe */
    padding: 4px 8px 4px 4px;

    background: #000;
    color: #fff;
    border-radius: 6px;

    flex: 0 0 auto;            /* nie schrumpfen */
    transform: translateY(2px);/* optischer Feinschliff (optional) */
}

.fp-date-year {
    display: inline-block;
    transform: rotate(-90deg);
    transform-origin: center;
    font-size: 1.0rem;
    letter-spacing: 0.04em;
    opacity: 0.95;
    border-bottom: 2px solid white;
    padding-bottom: 0.25em;
    margin-right: 0.25em;
}

.fp-date-day-month {
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.fp-date.is-year-0  { background: #0073e5; } /* 2025 */
.fp-date.is-year-1  { background: #0ea5e9; } /* 2026 */
.fp-date.is-year-2  { background: #22c55e; } /* 2027 */
.fp-date.is-year-3  { background: #f59e0b; } /* 2028 */
.fp-date.is-year-4  { background: #ef4444; } /* 2029 */
.fp-date.is-year-5  { background: #a855f7; } /* 2030 */
.fp-date.is-year-6  { background: #14b8a6; } /* 2031 */
.fp-date.is-year-7  { background: #f97316; } /* 2032 */
.fp-date.is-year-8  { background: #3b82f6; } /* 2033 */
.fp-date.is-year-9  { background: #84cc16; } /* 2034 */
.fp-date.is-year-10 { background: #e11d48; } /* 2035 */

.fp-item h3 > a{
    display: block;            /* macht den Link zum Textblock */
    line-height: 1.25;         /* zu deiner Headline-Ästhetik passend */
    text-decoration: none;
    padding:.06em 0;
}

.fp-item h3 > a:hover{
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/* ==========================================================================
   Featured Image Halo (Ambilight-like, image-based)
   ========================================================================== */

/* Featured image halo (image-based) */
.image-halo{
    position: relative;
    isolation: isolate; /* eigener Stacking-Context: wichtig! */
    z-index: 0;
}

.image-halo::before{
    content:"";
    position:absolute;
    inset:-6%;
    z-index:-1; /* <- Halo hinter ALLEM im Wrapper */

    background-image: var(--halo-image);
    background-size: cover;
    background-position: center;

    filter: blur(90px) saturate(3.15);
    opacity: 0.55;
    transform: scale(1.04);
    pointer-events:none;
}

.image-halo a,
.image-halo img{
    position: relative;
    z-index: 0;
    display:block;
}

/* ==========================================================================
   Glass Header
   ========================================================================== */

/* Outer header bleibt strukturell neutral */
.site-header{
    background: transparent;
    border: 0;
    padding: 0;
    left:0;
    right:0;
    position: sticky;
    z-index: 50; /* über Content, unter Overlays */
}

/* Sichtbare Header-Fläche = erstes Wrap */
.site-header {
    background: rgba(255,255,255,0.48);
    border: 1px solid rgba(255,255,255,0.45);

    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    backdrop-filter: blur(18px) saturate(1.1);
}

/* Weicher, gewölbter Schatten */
.site-header::after{
    content:"";
    position:absolute;
    left: 8%;
    right: 8%;
    bottom: -18px;
    height: 28px;

    background: radial-gradient(
            ellipse at center,
            rgba(0,0,0,0.25) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.05) 60%,
            rgba(0,0,0,0.00) 75%
    );

    filter: blur(18px);
    opacity: 0.55;

    z-index: -1;
    pointer-events: none;
}

@media (max-width: 640px){
    .site-header > .wrap{
        padding: 18px 18px 14px;
        border-radius: 18px;

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .site-header > .wrap::after{
        opacity: 0.35;
        filter: blur(14px);
    }
}

/* Halo-Wrapper darf NICHT clippen */
.image-halo{
    position: relative;
    isolation: isolate;
    overflow: visible; /* wichtig */
}

/* Crop nur fürs Bild (innerer Rahmen) */
.fp-featured__image a{
    display: block;
    overflow: hidden;     /* hier clippen wir den Zoom */
    border-radius: 16px;  /* wenn du abgerundete Ecken willst */
}

/* Bild animieren */
.fp-featured__image img{
    display: block;
    width: 100%;
    height: auto;

    transform: translateZ(0) scale(1) rotate(0deg);
    transition: transform 600ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}

/* Hover nur auf echten Hover-Devices */
@media (hover: hover) and (pointer: fine){
    .fp-featured__image:hover img{
        transform: translateZ(0) scale(1.04) rotate(-0.4deg);
    }
}

.media-credit{
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(0,0,0,0.55);
    text-align:center;
}

.entry-featured-media{
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 15px; /* optional */
    margin-top:1em;
}

.entry-featured-media img.wp-post-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Alle normalen Content-Bilder zentrieren */
.entry-content img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}

.wp-block-gallery img{
    margin: 0;
}

.fp-item img,
.archive img{
    margin: 0;
}

.entry > .entry-content {
    margin-top:3em;
}

.fp-kicker {
    color:#AAA;
}

.gallery {
    margin-top: 2em;
    margin-bottom: 2em;
}

.entry-below-area {
}

.full-width-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.full-width-block .wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2em 0;
}

.full-width-block .wrap .after-entry-block {
    width:75%;
    margin: 0 auto!important;
}

.full-width-block .wrap .after-entry-block .fp-item {
    margin: .85em 0!important;
}

.full-width-block .wrap .after-entry-block .fp-item a {
    text-decoration:none;
    color: black;
}

.full-width-block .wrap .after-entry-block .fp-item a:hover {
    text-decoration: underline;
    color: #0073e5;
}

.author-box {
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin: 2em auto;
    width:75%;
    padding:2em 0;
}

.author-box .author-hero{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.author-box .author-hero__avatar{
    flex: 0 0 auto;
}

.author-box .author-avatar{
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 999px;
}

.author-box .author-hero__content{
    flex: 1 1 auto;
    min-width: 0; /* wichtig: verhindert Überlappung/Overflow bei langen Wörtern */
}

.author-box .author-hero__name{
    font-weight: 800;
    line-height: 1.2;
    margin-top: 2px;
}

.author-box .author-bio{
    margin-top: 6px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.75);
}

/* Mobile: untereinander */
@media (max-width: 520px){
    .author-box .author-hero{
        flex-direction: column;
        gap: 10px;
    }
    .author-box .author-avatar{
        width: 84px;
        height: 84px;
    }
}

.archive-pagination {
    text-align:center;
    margin-bottom:4em;
}

.archive-pagination .current {
    background-color: black;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    padding: 8px 12px;
    text-decoration: none
}

.archive-pagination .current,
.archive-pagination li a {
    font-size:24px!important;
    width: 2.25em;
}

.archive-pagination .prev,
.archive-pagination .next {
        width: auto;
}

.editorial-claim{
    text-align:center;
    margin: 0 0 4em 0;
    color:#555;
    font-size:32px;
    font-weight:500;
}

.site-description {
    visibility: hidden;
    overflow: hidden;
    height: 0;
}


.fp-featured__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;
    border-radius: 8px;

    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;

    /* Milchglas */
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* === Secondary Navigation im Footer (Meta-Navigation) === */

/* Genesis-Navigation im Footer vollständig neutralisieren */
.nav-secondary .genesis-nav-menu .menu-item,
.nav-secondary .genesis-nav-menu a,
.nav-secondary .genesis-nav-menu {
    all: unset;
    display: inline-flex;
    align-items: baseline;
}


.nav-secondary,
.nav-secondary * {
    box-sizing: border-box;
}

.nav-secondary {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;         /* einheitliche Zeilenhöhe */
}

.nav-secondary .wrap {
    max-width: none;
    padding: 0;
}

/* Genesis/Superfish-Menü zu einer stabilen Inline-Zeile machen */
.nav-secondary ul.menu {
    display: inline-flex;     /* inline-flex -> zentriert ohne Layoutsprünge */
    align-items: baseline;    /* gleiche Grundlinie */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Li/A/Span: gleiche Baseline, gleiche Line-Height, keine Sonderabstände */
.nav-secondary ul.menu > li {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.nav-secondary ul.menu > li > a,
.nav-secondary ul.menu > li > a > span {
    font-size: inherit;
    line-height: inherit;
    vertical-align: baseline;
}

/* Link optisch ruhig */
.nav-secondary a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
}

.nav-secondary a:hover {
    text-decoration: underline;
}

/* Separator: keine Positionierung, kein Pixel-Drift */
.nav-secondary ul.menu > li + li::before {
    content: "\00B7";         /* middle dot */
    display: inline-block;
    margin: 0 0.75rem;
    color: #999;
    font-size: 1em;
    line-height: inherit;
    vertical-align: baseline;
}

/* Superfish-Pfeile weg */
.nav-secondary .sf-arrows .sf-with-ul::after {
    display: none !important;
}

.archive-description {
    display:none;
}

.support-box {
    padding:1em;
    font-size: 0.95rem;
    color: #555;
    margin: 1em auto;
    width:75%;
    background-color:#DEF;
    text-align:center;
}

.support-box p {
    margin: 0;
}

.support-box__text {
}

.support-box__action a {
    text-decoration: underline;
    color: inherit;
}

.support-box__action a:hover {
    text-decoration: none;
}

/* ========================================================================== */
/* Responsive Best-Practice Splitpoints (append at END of stylesheet)          */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* <= 1024px (Tablet landscape / small laptop)                                */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px){
    .fp-list{
        margin: 6.5em 0; /* vorher 8em */
    }

    .fp-featured h2{
        font-size: 46px; /* vorher 52px */
        line-height: 1.08;
        margin: .55em 0 .35em;
    }

    .fp-item{
        margin: 1.6em 0; /* vorher 1.85em */
    }

    .fp-item h3{
        gap: 12px; /* stabil */
    }
}

/* -------------------------------------------------------------------------- */
/* <= 900px (Tablet portrait / narrow desktop)                                */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px){
    .fp-list{
        margin: 5.5em 0;
    }

    .fp-featured h2{
        font-size: 42px;
        line-height: 1.1;
    }

    .fp-item{
        margin: 1.45em 0;
    }

    .fp-item h3 > a{
        line-height: 1.22;
    }
}

/* -------------------------------------------------------------------------- */
/* <= 768px (Tablet)                                                          */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px){
    .fp-list{
        margin: 4.75em 0;
    }

    .fp-featured h2{
        font-size: 38px;
        line-height: 1.12;
    }

    .fp-item{
        margin: 1.25em 0;
    }

    /* Halo: auf Tablets optional — du wolltest "im mobilen" nicht.
       Best practice: ab 768px abwärts abschalten, weil Performance/Lesen. */
    .image-halo::before{
        content: none !important;
        display: none !important;
        background: none !important;
        filter: none !important;
        opacity: 0 !important;
    }

    .site-title {
        font-size:24px;
    }
}

/* -------------------------------------------------------------------------- */
/* <= 640px (Large phones)                                                    */
/* Mobile-Regeln: kein Halo, keine Date-Badges, Datum über Headline           */
/* -------------------------------------------------------------------------- */
@media (max-width: 640px){

    /* Rhythmus / Splitpoints */
    .fp-list{
        margin: 4.25em 0;
    }

    .fp-item{
        margin: 1.1em 0;
    }

    /* Featured headline */
    .fp-featured h2{
        font-size: 34px;
        line-height: 1.12;
        margin: .45em 0 .25em;
    }

    /* Date + title stacken */
    .fp-item h3{
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Datum: klein oberhalb der Headline, keine Badge-Optik */
    .fp-item .fp-date{
        display: block;
        background: transparent !important;
        color: rgba(0,0,0,0.55) !important;

        padding: 0 !important;
        border-radius: 0 !important;
        transform: none !important;

        font-weight: 600;
        line-height: 1.1;
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .site-inner .fp-date-year {
        border-right: 1px solid #888;
        font-size: 15px;
    }

    /* Rotiertes Jahr zurück auf normal */
    .fp-date-year{
        transform: none !important;
        transform-origin: unset !important;
        border-bottom: 0 !important;
        padding-bottom: 0 !important;

        display: inline;
        font-size: 0.85rem;
        letter-spacing: 0.02em;
        opacity: 0.9;
        margin-right: 0.35em;
    }

    .fp-date-day-month{
        font-weight: 600;
        white-space: nowrap;
    }

    /* Farbcodierte Jahres-Badges neutralisieren */
    .fp-date.is-year-0,
    .fp-date.is-year-1,
    .fp-date.is-year-2,
    .fp-date.is-year-3,
    .fp-date.is-year-4,
    .fp-date.is-year-5,
    .fp-date.is-year-6,
    .fp-date.is-year-7,
    .fp-date.is-year-8,
    .fp-date.is-year-9,
    .fp-date.is-year-10{
        background: transparent !important;
        color: rgba(0,0,0,0.55) !important;
    }

    /* Title link: mobile rhythm */
    .fp-item h3 > a{
        line-height: 1.18;
        padding: .08em 0;
    }

    /* Featured badge im Mobile aus */
    .fp-featured__badge{
        display: none !important;
    }
}

/* -------------------------------------------------------------------------- */
/* <= 520px (Phones)                                                          */
/* -------------------------------------------------------------------------- */
@media (max-width: 520px){

    .fp-list{
        margin: 3.75em 0;
    }

    .fp-item{
        margin: 1.5em 0;
    }

    .fp-featured h2{
        font-size: 30px;
        line-height: 1.14;
    }

    .fp-item h3 > a{
        line-height: 1.16;
    }

    .fp-item .fp-date{
        font-size: 0.82rem;
    }

    /* Header-Wrap existiert bei dir schon @640px,
       hier nur minimal komfortabler für sehr schmale Geräte */
    .site-header > .wrap{
        padding: 16px 16px 12px;
    }
}

/* -------------------------------------------------------------------------- */
/* <= 420px (Small phones)                                                    */
/* -------------------------------------------------------------------------- */
@media (max-width: 420px){

    .fp-list{
        margin: 3.25em 0;
    }

    .fp-featured h2{
        font-size: 28px;
        line-height: 1.15;
    }

    .fp-item .fp-date{
        font-size: 0.80rem;
    }

    .fp-item h3 > a{
        line-height: 1.15;
    }
}

/* -------------------------------------------------------------------------- */
/* <= 360px (Very small phones)                                               */
/* -------------------------------------------------------------------------- */
@media (max-width: 360px){

    .fp-featured h2{
        font-size: 26px;
    }

    .fp-item .fp-date{
        font-size: 0.78rem;
    }
}


/* ==========================================================================
   OFFCANVAS – Fixes für Header-Layout, Overlay, kein Push
   ========================================================================== */

@media (max-width: 1140px){

    :root{ --offcanvas-w: min(86vw, 360px); }

    body.nav-is-open {
        overflow-x: hidden !important;
    }

    /* 1) Header-Layout: Logo links, Toggle rechts, kein Umbruch "unter Logo" */
    .site-header > .wrap{
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }

    .site-header .title-area{
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .site-title {
        font-size:24px;
    }

    #genesis-mobile-nav-primary.menu-toggle{
        flex: 0 0 auto !important;
        margin: 0 !important;
        order: 3 !important;
        position: relative !important;
        z-index: 4000 !important; /* sicher über Overlay */
    }

    /* 2) Offcanvas: Panel fährt über die Seite (kein Push) */
    /* Genesis kann inline display:none setzen -> neutralisieren */
    #genesis-nav-primary{
        display: block !important;
    }

    #genesis-nav-primary.nav-primary{
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;

        height: 100dvh !important;
        width: var(--offcanvas-w) !important;

        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;

        background: #fff !important;
        padding: 86px 18px 18px !important;

        transform: translateX(100%) !important;
        transition: transform 260ms ease !important;

        z-index: 3000 !important; /* über Overlay */
    }

    /* OPEN-STATE über Genesis-Button */
    body:has(#genesis-mobile-nav-primary.activated) #genesis-nav-primary{
        transform: translateX(0) !important;
        box-shadow: -4px 4px 4px rgba(0,0,0,.25);
    }
    /* Fallback ohne :has */
    #genesis-mobile-nav-primary.activated ~ #genesis-nav-primary{
        transform: translateX(0) !important;
    }

    .site-inner {
        padding: 40px 40px 0;
    }

    .editorial-claim {
        margin: 0 0 3em 0;
        font-size: 18px;
    }

    .site-inner h1,
    .site-inner h2,
    .site-inner h3,
    .site-inner h4,
    .site-inner h5,
    .site-inner h6,
    .fp-featured h2
    {
        font-weight:600;
    }


    .site-inner h2,
    .fp-featured h2 {
        font-size:22px;
    }

    .site-inner h3 {
        font-size:18px;
    }

    .site-inner .fp-date-year {
        font-size: 11px;
    }

    .site-inner .entry-title {
        font-size:32px;
        width:auto;
    }

    .site-inner .entry-content {
        width:auto;
        font-size:15px;
    }

    .site-inner .entry-header .entry-content {
        font-size:18px;
    }

    .site-inner .fp-kicker {
        font-size: 12px;
    }

    .site-inner .entry-featured-media {
        margin-top:0;
    }

    .site-inner .entry-content {
        margin-top:0;
    }

    .fp-featured__image a,
    .entry-featured-media,
    .entry-content img {
        border-radius:8px;
    }

    .entry-content .media-credit {
        margin-bottom:1em;
    }
        /* 3) Dimmer: nur Content dimmen, nicht das Panel */
    /* Overlay auf .site-container statt body, damit Nav nicht "mitgedimmt" wird */
    .site-container{
        position: relative !important;
        z-index: 1 !important;
        transform: none !important; /* Push explizit aus */
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .site-container::before{
        content:"";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 260ms ease;
        z-index: 2000; /* unter dem Panel (3000), über Content */
    }

    body:has(#genesis-mobile-nav-primary.activated) .site-container::before{
        opacity: 1;
        pointer-events: auto; /* Klick auf Overlay möglich */
        top:0;
        right:0;
        left:0;
        bottom:0;
        width:100%;
        height:100%;
        z-index: 20;
    }

    body:has(#genesis-mobile-nav-primary.activated) .site-header {
        background: transparent;
        border: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        }

        /* Falls du ohne :has unterwegs bist: wenigstens Overlay aktivieren */
    #genesis-mobile-nav-primary.activated ~ #genesis-nav-primary ~ .site-container::before{
        opacity: 1;
        pointer-events: auto;
    }

    /* Optional: Klickbarkeit im Panel sicherstellen (falls irgendwo pointer-events gepfuscht wurden) */
    #genesis-nav-primary, #genesis-nav-primary *{
        pointer-events: auto !important;
    }

    /* Overlay an der Nav selbst, unterhalb des Panels */
    #genesis-nav-primary::before{
        content:"";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 260ms ease;
        z-index: -1; /* <- unter dem Panel, aber über dem Rest */
    }

    /* Wenn Genesis "open" signalisiert */
    #genesis-mobile-nav-primary.activated ~ #genesis-nav-primary::before{
        opacity: 1;
        pointer-events: auto;
    }
}

/* ==========================================================================
   Mobile Menu – visuelles Upgrade (Offcanvas Panel)
   ========================================================================== */

@media (max-width: 1140px){

    /* Panel-Optik: minimal, aber hochwertig */
    #genesis-nav-primary.nav-primary{
    }

    /* Wrapper: sauberer Innenrahmen */
    #genesis-nav-primary .wrap{
        padding: 0 !important; /* du steuerst schon über panel padding */
    }

    /* Liste als "Menu-Card" */
    #genesis-nav-primary ul.menu{
        margin: 0 !important;
        padding: 10px 0 !important;
        list-style: none !important;
        border-radius: 14px;
        background: rgba(0,0,0,.02);
        border: 1px solid rgba(0,0,0,.06);
    }

    /* einzelne Items: Trennlinien + Luft */
    #genesis-nav-primary ul.menu > li{
        margin: 0 !important;
        padding: 0 !important;
    }

    #genesis-nav-primary ul.menu > li + li{
        border-top: 1px solid rgba(0,0,0,.06);
    }

    /* Links als echte Touch-Targets */
    #genesis-nav-primary ul.menu > li > a{
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        padding: 14px 14px !important;
        min-height: 48px;              /* gut für Daumen */
        text-decoration: none !important;

        font-weight: 600;
        line-height: 1.15;
        letter-spacing: .01em;

        color: inherit;
        border-radius: 12px;           /* wirkt „freundlicher“ als harte Kanten */
    }

    /* Optional: falls WordPress die Linktexte in <span> kapselt */
    #genesis-nav-primary ul.menu > li > a > span{
        display: inline-block;
    }

    /* Hover/Active: dezentes „Ink“-Feedback */
    #genesis-nav-primary ul.menu > li > a:hover{
        background: rgba(0,0,0,.04);
    }

    #genesis-nav-primary ul.menu > li > a:active{
        background: rgba(0,0,0,.07);
        transform: translateY(1px);
    }

    /* Tastatur-Fokus: sichtbar, aber nicht neon */
    #genesis-nav-primary ul.menu > li > a:focus-visible{
        outline: 2px solid rgba(0,0,0,.18);
        outline-offset: 2px;
        background: rgba(0,0,0,.04);
    }

    /* Aktuelle Seite: klarer Marker (ohne Brüllerei) */
    #genesis-nav-primary ul.menu > li.current-menu-item > a,
    #genesis-nav-primary ul.menu > li.current_page_item > a{
        background: rgba(0,0,0,.06);
    }

    /* Kleines Chevron als Hinweis „das ist ein Menüpunkt“ */
    #genesis-nav-primary ul.menu > li > a::after{
        content: "›";
        opacity: .35;
        font-size: 20px;
        line-height: 1;
        margin-left: 12px;
        transform: translateY(-1px);
    }

    /* Wenn du keine Pfeile willst: einfach auskommentieren:
       #genesis-nav-primary ul.menu > li > a::after { content: none; }
    */

    /* Submenus (falls du später welche hast): eingezogen + ruhiger */
    #genesis-nav-primary ul.sub-menu{
        margin: 6px 0 10px;
        padding: 6px 0;
        border-left: 2px solid rgba(0,0,0,.08);
    }

    #genesis-nav-primary ul.sub-menu > li > a{
        padding: 12px 14px 12px 18px !important;
        font-weight: 600;
        opacity: .92;
    }

    .full-width-block .wrap .after-entry-block,
    .author-box,
    .support-box {
        width:100%;
    }
}


@media (max-width: 640px) {

    .site-inner .fp-date-year {
        border-right: 1px solid #888;
        padding-right:.25em;
        font-size: 0.82rem;
    }
}

