/* ==========================================================================
   KSV Editorial Gold — Design Tokens
   Eingefügt 2026-04-27 für Content-Element-Redesign (Phase 1).
   Genutzt von neuen Elementen (A/B/C/E/K/L) unter .bk-editorial-Scope.
   Prefix --bk-* — keine Kollision mit anderen Sites/Themes.
   ========================================================================== */
:root {
       /* --- Accent (Neutrales Slate-Blau statt Gold) --- */
       --bk-accent: #475569;         /* Ein sattes Slate-Blau für Akzente */
       --bk-accent-soft: #f8fafc;    /* Sehr helles, kühles Grau */
       --bk-accent-border: #e2e8f0;  /* Klare, neutrale Rahmenlinie */
       --bk-accent-label: #64748b;   /* Besser lesbarer Label-Ton */
       --bk-accent-subtle: #f9fafb;  /* Saubere Flächenfarbe */
   
       /* --- Surfaces (Architektonisches Weiß & kühles Lichtgrau) --- */
       --bk-surface: #ffffff;        /* Reines Weiß */
       --bk-surface-cream: #ffffff;  /* Weg von Cream, hin zu Weiß */
       --bk-surface-header: #f8fafc; /* Dezente Abhebung für Header */
       --bk-surface-row-hover: #f1f5f9; /* Kühle Hover-Nuance */
   
       /* --- Borders (Dünn & Präzise) --- */
       --bk-border: #e2e8f0;         /* Dezente Standard-Linie */
       --bk-border-header: #e2e8f0;
   
       /* --- Text (Tiefes Anthrazit für bessere Lesbarkeit) --- */
       --bk-text-heading: #1e293b;   /* Sehr dunkles Blau-Grau */
       --bk-text-body: #334155;      /* Sachliches Dunkelgrau */
       --bk-text-muted: #64748b;     /* Deutlich differenziert */
       --bk-text-dim: #94a3b8;       /* Sehr dezente Zweitinfo */
   
       /* --- CTA (Dein Markengrün beibehalten, aber auf neuem Grund) --- */
       --bk-cta-bg: #2bb24c;
       --bk-cta-fg: #ffffff;
   
       /* --- Semantik (Entsättigt für bessere Orientierung) --- */
       /* Pro: Sehr helles Grün, hoher Kontrast beim Text */
       --bk-pro-bg: #f0fdf4; 
       --bk-pro-fg: #166534;
       /* Contra: Sehr helles Rot, wirkt nicht alarmierend */
       --bk-contra-bg: #fef2f2;
       --bk-contra-fg: #991b1b;
   
       /* --- Effects (Clean & Modern) --- */
       --bk-shadow-card: 0 1px 2px 0 rgba(0, 0, 0, 0.06); 
       --bk-radius: 4px;             /* Etwas schärfer/kantiger */
       --bk-radius-s: 2px;
   
       /* --- Type (Typografische Ruhe) --- */
       --bk-label-size: 0.75em;      /* Einen Tick besser lesbar */
       --bk-label-tracking: 0.08em;  /* Weniger weit gezogen, wirkt seriöser */
   }

/* Shared label utility (small-caps Imitation) */
.bk-editorial .bk-label {
    display: inline-block;
    font-size: var(--bk-label-size);
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent);
}

/* ==========================================================================
   KSV Content Shortcodes — kassensystemevergleich.de
   Bravekin-kompatibel: Roboto, #2bb24c, dashed borders
   ========================================================================== */

/* ---------- Shared ---------- */
.bk-anbieter-box,
.bk-empfehlung,
.bk-vergleich,
.bk-procontra,
.bk-kosten {
    margin: 1.5em 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Override Bravekin default link box-shadow inside shortcodes */
.bk-anbieter-box a,
.bk-empfehlung a,
.bk-vergleich a,
.bk-procontra a,
.bk-kosten a {
    box-shadow: none;
}

/* ---------- [anbieter_box] ---------- */
.bk-anbieter-box {
    position: relative;
    border: 1px dashed #2bb24c;
    background: #f8fdf9;
    border-radius: 3px;
}
.bk-anbieter-box__label {
    display: inline-block;
    background: #2bb24c;
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    padding: 0.25em 0.75em;
    border-radius: 0 0 3px 0;
    position: absolute;
    top: 0;
    left: 0;
}
.bk-anbieter-box__inner {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.25em;
}
.bk-anbieter-box__label + .bk-anbieter-box__inner {
    padding-top: 2.25em;
}
.bk-anbieter-box__logo {
    flex: 0 0 120px;
}
.bk-anbieter-box__logo img {
    max-width: 120px;
    height: auto;
    display: block;
}
.bk-anbieter-box__content {
    flex: 1;
}
.bk-anbieter-box__name {
    margin: 0 0 0.25em;
    font-size: 1.1em;
}
.bk-anbieter-box__name a {
    color: #444;
    text-decoration: none;
}
.bk-anbieter-box__name a:hover {
    color: #2bb24c;
}
.bk-anbieter-box__price {
    font-weight: 700;
    color: #2bb24c;
    margin-bottom: 0.25em;
}
.bk-anbieter-box__kontext {
    font-size: 0.9em;
    color: #444;
    line-height: 1.5;
}
.bk-anbieter-box__features {
    font-size: 0.9em;
    color: #666;
}
.bk-anbieter-box__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bk-anbieter-box__features li:before {
    content: "✓ ";
    color: #2bb24c;
    font-weight: 700;
}
.bk-anbieter-box__cta {
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .bk-anbieter-box__inner {
        flex-direction: column;
        text-align: center;
    }
    .bk-anbieter-box__logo {
        flex: none;
    }
    .bk-anbieter-box__cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ---------- [empfehlung] ---------- */
.bk-empfehlung {
    border: 1px solid #e0e0e0;
    border-top: 4px solid #2bb24c;
    background: #f0faf4;
    border-radius: 3px;
}
.bk-empfehlung__header {
    padding: 0.5em 1.25em 0;
}
.bk-empfehlung__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    background: #2bb24c;
    color: #fff;
    font-size: 0.8em;
    font-weight: 700;
    padding: 0.3em 0.75em;
    border-radius: 3px;
}
.bk-empfehlung__badge svg {
    flex-shrink: 0;
}
.bk-empfehlung__body {
    display: flex;
    align-items: flex-start;
    gap: 1.25em;
    padding: 1em 1.25em 1.25em;
}
.bk-empfehlung__logo {
    flex: 0 0 120px;
}
.bk-empfehlung__logo img {
    max-width: 120px;
    height: auto;
}
.bk-empfehlung__content {
    flex: 1;
}
.bk-empfehlung__name {
    margin: 0 0 0.25em;
    font-size: 1.2em;
}
.bk-empfehlung__price {
    font-weight: 700;
    color: #2bb24c;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}
.bk-empfehlung__text {
    margin: 0 0 0.5em;
    color: #666;
}
.bk-empfehlung__usps {
    font-size: 0.9em;
    color: #666;
}
.bk-empfehlung__usps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bk-empfehlung__usps li:before {
    content: "✓ ";
    color: #2bb24c;
    font-weight: 700;
}
.bk-empfehlung__cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    align-self: center;
}
.bk-empfehlung__detail-link {
    font-size: 0.85em;
    color: #777;
    text-decoration: none;
}
.bk-empfehlung__detail-link:hover {
    color: #2bb24c;
}

@media (max-width: 767px) {
    .bk-empfehlung__body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bk-empfehlung__logo {
        flex: none;
    }
    .bk-empfehlung__cta {
        width: 100%;
    }
    .bk-empfehlung__cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ---------- [anbieter_vergleich] ---------- */
.bk-vergleich__titel {
    text-align: center;
    margin-bottom: 0.75em;
}
.bk-vergleich__grid {
    display: flex;
    gap: 1em;
}
.bk-vergleich__item {
    flex: 1;
    border: 1px dashed #ddd;
    border-radius: 3px;
    padding: 1.25em 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.bk-vergleich__item--first {
    border-color: #2bb24c;
    background: #f8fdf9;
}
.bk-vergleich__badge {
    display: inline-block;
    background: #2bb24c;
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.2em 0.6em;
    border-radius: 3px;
    margin-bottom: 0.75em;
}
.bk-vergleich__logo {
    margin-bottom: 0.75em;
}
.bk-vergleich__logo img {
    max-width: 80px;
    max-height: 50px;
    height: auto;
}
.bk-vergleich__name {
    margin: 0 0 0.25em;
    font-size: 1em;
}
.bk-vergleich__preis {
    font-weight: 700;
    color: #2bb24c;
    margin-bottom: 0.5em;
}
.bk-vergleich__branchen {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 0.75em;
    flex: 1;
}
.bk-vergleich__branchen ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bk-vergleich__cta {
    margin-top: auto;
}
.bk-vergleich__detail-link {
    display: block;
    font-size: 0.8em;
    color: #777;
    text-decoration: none;
    margin-top: 0.5em;
}
.bk-vergleich__detail-link:hover {
    color: #2bb24c;
}

@media (max-width: 767px) {
    .bk-vergleich__grid {
        flex-direction: column;
    }
}

/* ---------- [pro_contra] ---------- */
.bk-procontra {
    border: 1px dashed #ddd;
    border-radius: 3px;
    overflow: hidden;
}
.bk-procontra__columns {
    display: flex;
}
.bk-procontra__pro,
.bk-procontra__contra {
    flex: 1;
    padding: 1em 1.25em;
}
.bk-procontra__pro {
    border-right: 1px dashed #ddd;
}
.bk-procontra__pro h4 {
    color: #2bb24c;
    display: flex;
    align-items: center;
    gap: 0.35em;
    margin: 0 0 0.5em;
    font-size: 1em;
}
.bk-procontra__pro h4 svg {
    color: #2bb24c;
}
.bk-procontra__contra h4 {
    color: #b62019;
    display: flex;
    align-items: center;
    gap: 0.35em;
    margin: 0 0 0.5em;
    font-size: 1em;
}
.bk-procontra__contra h4 svg {
    color: #b62019;
}
.bk-procontra__pro ul,
.bk-procontra__contra ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bk-procontra__pro li {
    padding: 0.3em 0;
    padding-left: 1.25em;
    position: relative;
}
.bk-procontra__pro li:before {
    content: "+";
    color: #2bb24c;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.bk-procontra__contra li {
    padding: 0.3em 0;
    padding-left: 1.25em;
    position: relative;
}
.bk-procontra__contra li:before {
    content: "–";
    color: #b62019;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.bk-procontra__cta {
    border-top: 1px dashed #ddd;
    padding: 1em 1.25em;
    text-align: center;
}

@media (max-width: 767px) {
    .bk-procontra__columns {
        flex-direction: column;
    }
    .bk-procontra__pro {
        border-right: none;
        border-bottom: 1px dashed #ddd;
    }
}

/* ---------- [kosten_tabelle] ---------- */
.bk-kosten__titel {
    margin-bottom: 0.75em;
}
.bk-kosten__table {
    width: 100%;
    border-collapse: collapse;
}
.bk-kosten__table th {
    text-align: left;
    font-weight: 700;
    padding: 0.6em 0.75em;
    border-bottom: 2px solid #ddd;
    font-size: 0.9em;
    color: #444;
}
.bk-kosten__table td {
    padding: 0.75em;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}
.bk-kosten__table tr:nth-child(even) {
    background: #f9f9f9;
}
.bk-kosten__anbieter {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.bk-kosten__anbieter a {
    color: #444;
    text-decoration: none;
    font-weight: 700;
}
.bk-kosten__anbieter a:hover {
    color: #2bb24c;
}
.bk-kosten__logo {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}
.bk-kosten__preis {
    font-weight: 700;
    color: #2bb24c;
    white-space: nowrap;
}
.bk-kosten__branchen {
    font-size: 0.85em;
    color: #666;
}
.bk-kosten__branchen ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bk-kosten__action .btn {
    font-size: 0.85em;
    white-space: nowrap;
}

/* Mobile: Cards statt Tabelle */
.bk-kosten__cards {
    display: none;
}

@media (max-width: 767px) {
    .bk-kosten__table {
        display: none;
    }
    .bk-kosten__cards {
        display: block;
    }
    .bk-kosten__card {
        border: 1px dashed #ddd;
        border-radius: 3px;
        padding: 1em;
        margin-bottom: 0.75em;
    }
    .bk-kosten__card-header {
        display: flex;
        align-items: center;
        gap: 0.75em;
        margin-bottom: 0.5em;
    }
    .bk-kosten__card-header img {
        width: 50px;
        height: auto;
    }
    .bk-kosten__card-header strong {
        display: block;
        font-size: 1.05em;
    }
    .bk-kosten__card-branchen {
        font-size: 0.85em;
        color: #666;
        margin-bottom: 0.75em;
    }
    .bk-kosten__card-branchen ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .bk-kosten__card .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   CTA Cards (post_ctas Repeater)
   Full: Postende-Box mit gruenem Header + Card-Grid
   Inline: Kompakte Anbieter-Zeilen vor dem 2. H2
   ========================================================================== */

/* --- FULL: Postende-Box --- */
.bk-cta-box {
    margin: 2em 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.bk-cta-box a { box-shadow: none; }
.bk-cta-box__header {
    padding: 1.25em 1.5em 1em;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.bk-cta-box__header h3 {
    margin: 0 0 0.2em;
    font-size: 1.15em;
    font-weight: 700;
    color: #333;
}
.bk-cta-box__header p {
    margin: 0;
    font-size: 0.85em;
    color: #888;
}
.bk-cta-box__grid {
    display: flex;
    gap: 0;
}

/* Card (full) */
.bk-cta-card {
    flex: 1 1 0;
    padding: 1.5em 1.25em 1.25em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #eee;
}
.bk-cta-card:last-child {
    border-right: none;
}
.bk-cta-card__logo {
    margin-bottom: 0.75em;
    height: 40px;
    display: flex;
    align-items: center;
}
.bk-cta-card__logo img {
    max-width: 100px;
    max-height: 40px;
    height: auto;
    object-fit: contain;
}
.bk-cta-card__logo a { display: block; }
.bk-cta-card__name {
    margin: 0 0 0.4em;
    font-size: 1.05em;
    font-weight: 700;
    color: #333;
}

/* Score: Badge + Bravekin Sterne-Widget */
.bk-cta-card__score {
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-bottom: 0.15em;
}
.bk-cta-card__score-badge {
    display: inline-block;
    color: #1e8e3e;
    font-size: 0.8em;
    font-weight: 700;
}
.bk-cta-card__stars-wrap {
    display: inline-block;
    font-size: 6px;
    line-height: 1;
    vertical-align: middle;
}
.bk-cta-card__stars-wrap .review-rating {
    width: 16em;
    height: 3.2em;
    display: inline-block;
}
.bk-cta-card__stars-wrap .review-score {
    height: 3.2em;
    display: block;
}
.bk-cta-card__review-count {
    font-size: 0.78em;
    color: #999;
    margin-bottom: 0.4em;
}
.bk-cta-card__price {
    font-weight: 700;
    color: #2bb24c;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

/* Actions: Testbericht + CTA stacked */
.bk-cta-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    padding-top: 0.5em;
}
.bk-cta-card__testbericht {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-size: 0.82em;
    font-weight: 500;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}
.bk-cta-card__testbericht:hover {
    color: #2bb24c;
}
.bk-cta-card__testbericht svg {
    flex-shrink: 0;
}
.bk-cta-card__actions .btn {
    font-size: 0.9em;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

/* --- INLINE: Kompakte Box im Content --- */
.bk-cta-inline-box {
    margin: 1.5em 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 1.25em 1.25em 0.75em;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.bk-cta-inline-box a { box-shadow: none; }
.bk-cta-inline-box__header {
    margin-bottom: 0.75em;
    padding-bottom: 0.75em;
    border-bottom: 1px solid #e8e8e8;
}
.bk-cta-inline-box__header strong {
    display: block;
    font-size: 0.9em;
    color: #333;
    margin-bottom: 0.1em;
}
.bk-cta-inline-box__header span {
    display: block;
    font-size: 0.78em;
    color: #888;
}

/* Inline Row (eine Zeile pro Anbieter) */
.bk-cta-row {
    display: flex;
    align-items: center;
    gap: 0.75em;
    padding: 0.65em 0;
    border-bottom: 1px solid #eee;
}
.bk-cta-row:last-child {
    border-bottom: none;
}
.bk-cta-row__logo {
    flex: 0 0 100px;
    display: flex;
}
.bk-cta-row__logo img {
    width: 100px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}
.bk-cta-row__info {
    flex: 1;
    min-width: 0;
}
.bk-cta-row__name {
    display: block;
    font-size: 0.95em;
    color: #333;
    line-height: 1.2;
}
.bk-cta-row__rating {
    display: flex;
    align-items: center;
    gap: 0.35em;
    margin-top: 0.15em;
}
.bk-cta-row__stars {
    display: inline-block;
    font-size: 5px;
    line-height: 1;
    vertical-align: middle;
}
.bk-cta-row__stars .review-rating {
    width: 14em;
    height: 2.8em;
    display: inline-block;
}
.bk-cta-row__stars .review-score {
    height: 2.8em;
    display: block;
}
.bk-cta-row__count {
    font-size: 0.75em;
    color: #888;
}
.bk-cta-row__testbericht {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    font-size: 0.8em;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.bk-cta-row__testbericht:hover {
    color: #2bb24c;
}
.bk-cta-row__btn {
    flex: 0 0 auto;
    font-size: 0.82em !important;
    white-space: nowrap;
    padding: 0.45em 0.8em !important;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .bk-cta-box__grid {
        flex-direction: column;
    }
    .bk-cta-card {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .bk-cta-card:last-child {
        border-bottom: none;
    }
    .bk-cta-row {
        flex-wrap: wrap;
    }
    .bk-cta-row__logo {
        flex: 0 0 70px;
    }
    .bk-cta-row__logo img {
        width: 70px;
    }
    .bk-cta-row__info {
        flex: 1 1 calc(100% - 85px);
    }
    .bk-cta-row__testbericht {
        order: 3;
        flex: 1;
    }
    .bk-cta-row__btn {
        order: 4;
        flex: 1;
        text-align: center;
    }
}

/* ---------- Dark Mode ---------- */
@media (prefers-color-scheme: dark) {
    .bk-anbieter-box {
        background: #3a3d3a;
        border-color: #71cba4;
    }
    .bk-anbieter-box__label {
        background: #71cba4;
        color: #333;
    }
    .bk-anbieter-box__name a,
    .bk-empfehlung__name,
    .bk-vergleich__name {
        color: #cacaca;
    }
    .bk-anbieter-box__price,
    .bk-empfehlung__price,
    .bk-vergleich__preis,
    .bk-kosten__preis {
        color: #71cba4;
    }
    .bk-empfehlung {
        background: #3a3d3a;
        border-color: #555;
        border-top-color: #71cba4;
    }
    .bk-empfehlung__badge {
        background: #71cba4;
        color: #333;
    }
    .bk-vergleich__item {
        border-color: #555;
    }
    .bk-vergleich__item--first {
        border-color: #71cba4;
        background: #3a3d3a;
    }
    .bk-vergleich__badge {
        background: #71cba4;
        color: #333;
    }
    .bk-procontra {
        border-color: #555;
    }
    .bk-procontra__pro {
        border-color: #555;
    }
    .bk-procontra__pro h4,
    .bk-procontra__pro li:before {
        color: #71cba4;
    }
    .bk-procontra__cta {
        border-color: #555;
    }
    .bk-kosten__table th {
        color: #cacaca;
        border-color: #555;
    }
    .bk-kosten__table td {
        border-color: #444;
    }
    .bk-kosten__table tr:nth-child(even) {
        background: #3a3d3a;
    }
    .bk-kosten__anbieter a {
        color: #cacaca;
    }
    .bk-kosten__card {
        border-color: #555;
    }
    .bk-cta-box {
        background: #2d2d2d;
        border-color: #555;
    }
    .bk-cta-box__header {
        border-color: #444;
    }
    .bk-cta-box__header h3 {
        color: #cacaca;
    }
    .bk-cta-card {
        border-color: #444;
    }
    .bk-cta-card__name {
        color: #cacaca;
    }
    .bk-cta-card__price {
        color: #71cba4;
    }
    .bk-cta-card__score-badge {
        color: #71cba4;
    }
    .bk-cta-card__testbericht {
        color: #b3b3ae;
    }
    .bk-cta-card__testbericht:hover {
        color: #71cba4;
    }
    .bk-cta-inline-box {
        background: #3a3d3a;
        border-color: #555;
    }
    .bk-cta-inline-box__header {
        border-color: #555;
    }
    .bk-cta-inline-box__header strong {
        color: #cacaca;
    }
    .bk-cta-row {
        border-color: #555;
    }
    .bk-cta-row__name {
        color: #cacaca;
    }
    .bk-cta-row__score {
        color: #71cba4;
    }
    .bk-cta-row__testbericht {
        color: #b3b3ae;
    }
    .bk-cta-row__logo img {
        background: #2d2d2d;
    }
    /* Text colors for dark mode */
    .bk-anbieter-box__features,
    .bk-empfehlung__text,
    .bk-empfehlung__usps,
    .bk-vergleich__branchen,
    .bk-kosten__branchen,
    .bk-kosten__card-branchen,
    .bk-procontra__pro li,
    .bk-procontra__contra li,
    .bk-empfehlung__detail-link,
    .bk-vergleich__detail-link {
        color: #b3b3ae;
    }
    .bk-procontra__contra h4,
    .bk-procontra__contra li:before {
        color: #e05a52;
    }
}

/* ---------- Entscheidungshelfer (Profil-Matrix) ---------- */
.entscheidungshelfer {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0369a1;
    padding: 1.5em 1.75em;
    border-radius: 6px;
    margin: 1.5em 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.entscheidungshelfer h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
    color: #0c4a6e;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.3;
}
.entscheidungshelfer > p {
    margin: 0 0 0.5em;
    color: #0c4a6e;
}
.entscheidungshelfer .decision-tree {
    list-style: none;
    padding: 0;
    margin: 0.75em 0 0;
}
.entscheidungshelfer .decision-tree li {
    padding: 0.625em 0 0.625em 1.75em;
    border-bottom: 1px solid rgba(3, 105, 161, 0.12);
    position: relative;
    line-height: 1.5;
}
.entscheidungshelfer .decision-tree li:last-child {
    border-bottom: none;
}
.entscheidungshelfer .decision-tree li:before {
    content: "\2192";
    position: absolute;
    left: 0;
    top: 0.625em;
    color: #0369a1;
    font-weight: 700;
    font-size: 1.125em;
}
.entscheidungshelfer .decision-tree a {
    box-shadow: none;
}
@media (prefers-color-scheme: dark) {
    .entscheidungshelfer {
        background: linear-gradient(135deg, #0b2535 0%, #0d3146 100%);
        border-left-color: #38bdf8;
    }
    .entscheidungshelfer h3,
    .entscheidungshelfer > p {
        color: #bae6fd;
    }
    .entscheidungshelfer .decision-tree li {
        border-bottom-color: rgba(56, 189, 248, 0.18);
        color: #e0f2fe;
    }
    .entscheidungshelfer .decision-tree li:before {
        color: #38bdf8;
    }
}

/* ==========================================================================
   KSV Editorial Gold — Element E (.bk-orientierung)
   Reines CSS, scoped unter .bk-editorial. Markup liefert der Content.
   ========================================================================== */
.bk-editorial .bk-orientierung {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow-card);
    margin: 1.5em 0;
    overflow: hidden;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.bk-editorial .bk-orientierung__head {
    padding: 1.1em 1.75em;
    background: var(--bk-surface-header);
    border-bottom: 1px solid var(--bk-border-header);
}
.bk-editorial .bk-orientierung__label {
    display: inline-block;
    font-size: var(--bk-label-size);
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 0.2em;
}
.bk-editorial .bk-orientierung__title {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.01em;
}
.bk-editorial .bk-orientierung__col-heads {
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    gap: 1.5em;
    padding: 0.75em 1.75em;
    background: #faf7ed;
    border-bottom: 1px solid var(--bk-border-header);
    font-size: var(--bk-label-size);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bk-text-dim);
}
.bk-editorial .bk-orientierung__row {
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    gap: 1.5em;
    padding: 1em 1.75em;
    border-bottom: 1px solid var(--bk-border);
    align-items: baseline;
}
.bk-editorial .bk-orientierung__row:last-child { border-bottom: none; }
.bk-editorial .bk-orientierung__row:hover { background: var(--bk-surface-row-hover); }
.bk-editorial .bk-orientierung__type-name {
    font-size: 1.02em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.01em;
}
.bk-editorial .bk-orientierung__type-name em {
    color: var(--bk-text-dim);
    font-style: normal;
    font-weight: 400;
    font-size: 0.92em;
}
.bk-editorial .bk-orientierung__reqs-text {
    font-size: 0.94em;
    color: var(--bk-text-body);
    line-height: 1.5;
}
.bk-editorial .bk-orientierung__rec-val {
    font-size: 0.94em;
    font-weight: 700;
    color: var(--bk-text-heading);
}
.bk-editorial .bk-orientierung__rec-val a {
    color: var(--bk-text-heading);
    border-bottom: 1px dotted #999;
    text-decoration: none;
    font-weight: 700;
}
.bk-editorial .bk-orientierung__rec-val a:hover { border-bottom-color: var(--bk-text-heading); }
.bk-editorial .bk-orientierung__rec-val-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-size: 0.88em;
    font-weight: 600;
    color: var(--bk-accent-label);
    background: var(--bk-accent-soft);
    border: 1px solid var(--bk-accent-border);
    padding: 0.35em 0.7em;
    border-radius: var(--bk-radius-s);
    text-decoration: none;
    white-space: nowrap;
}
.bk-editorial .bk-orientierung__rec-val-link:hover { background: #f8f0d5; }

@media (max-width: 768px) {
    .bk-editorial .bk-orientierung__col-heads { display: none; }
    .bk-editorial .bk-orientierung__row {
        grid-template-columns: 1fr;
        gap: 0.4em;
        padding: 1em 1.25em;
    }
}

/* ==========================================================================
   KSV Editorial Gold — Element K (.bk-cta-box / .bk-cta-card Override)
   Bestehender Markup aus inc/components/cta-mini-card.php.
   Override scoped unter .bk-editorial — Nicht-Cluster-Seiten unverändert.
   ========================================================================== */
.bk-editorial .bk-cta-box {
    background: var(--bk-surface-header);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius);
    padding: 1.5em 1.75em;
    margin: 1.5em 0;
    box-shadow: var(--bk-shadow-card);
}
.bk-editorial .bk-cta-box__header {
    text-align: left;
    margin-bottom: 1.25em;
    padding-bottom: 0;
    border-bottom: none;
}
.bk-editorial .bk-cta-box__header::before {
    content: "Auf einen Blick";
    display: block;
    font-size: var(--bk-label-size);
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 0.3em;
}
.bk-editorial .bk-cta-box__header h3 {
    margin: 0 0 0.3em;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.015em;
}
.bk-editorial .bk-cta-box__header p {
    margin: 0;
    color: var(--bk-text-muted);
    font-size: 0.95em;
}
.bk-editorial .bk-cta-box__grid {
    display: grid;
    grid-template-columns: repeat(var(--bk-cta-cols, 5), 1fr);
    gap: 0.6em;
}
.bk-editorial .bk-cta-box__grid--1 { --bk-cta-cols: 1; }
.bk-editorial .bk-cta-box__grid--2 { --bk-cta-cols: 2; }
.bk-editorial .bk-cta-box__grid--3 { --bk-cta-cols: 3; }
.bk-editorial .bk-cta-box__grid--4 { --bk-cta-cols: 4; }
.bk-editorial .bk-cta-box__grid--5 { --bk-cta-cols: 5; }
.bk-editorial .bk-cta-box__grid--6 { --bk-cta-cols: 6; }
.bk-editorial .bk-cta-card {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-radius: 5px;
    padding: 0.85em 0.7em;
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    transition: box-shadow 0.15s;
    /* Reset des Legacy-border-right aus .bk-cta-card (Strich zwischen Karten) */
    border-right: 1px solid var(--bk-border);
}
.bk-editorial .bk-cta-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.bk-editorial .bk-cta-card__logo {
    max-width: 95px;
    height: 32px;
    margin: 0 auto;
}
.bk-editorial .bk-cta-card__logo img {
    max-height: 32px;
}
.bk-editorial .bk-cta-card__name {
    margin: 0;
    font-size: 0.95em;
    font-weight: 700;
    color: var(--bk-text-heading);
    text-align: center;
    line-height: 1.2;
    /* Reservierte Hoehe fuer 1-2 Zeilen, damit unterschiedlich lange Namen
       (z.B. "Vectron Kassensysteme" vs. "POSSUM") die Reihen nicht verschieben. */
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Rating: clean wie bk-vendorlist — Sterne ohne Box, Count als Plain-Text.
   Score-Badge ("Gut" etc.) entfaellt komplett (redundant zum Sterne-Widget).
   Bestehende .review-rating-Sterne (bravekin-Widget, 16em-Width-Default)
   werden per Pixelmassen gekappt, sonst wachsen sie ueber 200px. */
.bk-editorial .bk-cta-card__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0;
    background: transparent;
    border: 0;
    margin: 0;
}
.bk-editorial .bk-cta-card__score-badge { display: none; }
.bk-editorial .bk-cta-card__stars-wrap {
    font-size: 0;
    line-height: 1;
    display: inline-block;
}
.bk-editorial .bk-cta-card__stars-wrap .review-rating {
    width: 95px !important;
    height: 18px !important;
    display: inline-block !important;
}
.bk-editorial .bk-cta-card__stars-wrap .review-score {
    height: 18px !important;
    display: block !important;
}
.bk-editorial .bk-cta-card__review-count {
    display: block;
    text-align: center;
    font-size: 0.78em;
    color: var(--bk-text-muted);
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0.15em 0 0;
    font-weight: 400;
}
.bk-editorial .bk-cta-card__price {
    text-align: center;
    font-size: 0.88em;
    color: var(--bk-text-heading);
    margin: 0.15em 0 0;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}
.bk-editorial .bk-cta-card__price b,
.bk-editorial .bk-cta-card__price strong {
    color: var(--bk-text-heading);
    font-weight: 700;
}
.bk-editorial .bk-cta-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}
/* CTA-Button: !important erforderlich, weil default-color.scss .btn:not(.scratchfield)
   mit !important auf $col2 (gruen) feuert und sonst gewinnt. */
.bk-editorial .bk-cta-card__actions .btn,
.bk-editorial .bk-cta-card__actions a.btn:not(.scratchfield) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    padding: 0.55em 0.8em;
    border-radius: var(--bk-radius-s);
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    background: var(--bk-cta-bg) !important;
    color: var(--bk-cta-fg) !important;
    border: 0;
}
.bk-editorial .bk-cta-card__actions .btn:hover,
.bk-editorial .bk-cta-card__actions a.btn:not(.scratchfield):hover {
    background: #1c9a3b !important; /* darken theme green ($col4), match Bravekin .btn:hover */
    color: var(--bk-cta-fg) !important;
}
.bk-editorial .bk-cta-card__testbericht {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    padding: 0.4em 0.7em;
    border-radius: var(--bk-radius-s);
    font-size: 0.78em;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    color: var(--bk-text-body);
    border: 1px solid #ddd;
    order: 2;
}
.bk-editorial .bk-cta-card__testbericht:hover {
    background: var(--bk-surface-cream);
    color: var(--bk-text-heading);
}
.bk-editorial .bk-cta-card__actions .btn { order: 1; }

@media (max-width: 1024px) {
    .bk-editorial .bk-cta-box__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .bk-editorial .bk-cta-box__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   KSV Editorial Gold — Element A (.bk-empfehlung--editorial)
   Modifier-Klasse, gerendert vom [empfehlung]-Shortcode wenn rang-Param oder
   Body-Class .bk-editorial aktiv ist. Legacy-Output bleibt parallel
   möglich (ohne Modifier) und nutzt weiterhin die alten Selektoren oben.
   ========================================================================== */
.bk-empfehlung--editorial {
    background: var(--bk-surface-cream);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius-s);
    box-shadow: var(--bk-shadow-card);
    margin: 1.5em 0;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* Header-Block aus Legacy entfällt im Editorial-Render — keine Override nötig */
.bk-empfehlung--editorial .bk-empfehlung__body {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    padding: 1.25em 1.5em;
    flex-direction: row;
    background: transparent;
}
.bk-empfehlung--editorial .bk-empfehlung__left {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}
.bk-empfehlung--editorial .bk-empfehlung__rank {
    display: flex;
    align-items: center;
    gap: 0.4em;
    flex-wrap: wrap;
}
.bk-empfehlung--editorial .bk-empfehlung__rank-num {
    font-size: 1.05em;
    font-weight: 800;
    color: var(--bk-accent);
    letter-spacing: -0.01em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.bk-empfehlung--editorial .bk-empfehlung__rank-dot {
    color: #d0c8b0;
    font-weight: 700;
}
.bk-empfehlung--editorial .bk-empfehlung__rank-label {
    font-size: 0.74em;
    font-weight: 700;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent-label);
}
.bk-empfehlung--editorial .bk-empfehlung__logo {
    width: 130px;
    max-width: 130px;
    padding: 0;
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}
.bk-empfehlung--editorial .bk-empfehlung__logo a {
    display: block;
    line-height: 0;
    box-shadow: none;
}
.bk-empfehlung--editorial .bk-empfehlung__logo img {
    max-width: 100%;
    max-height: 36px;
    width: auto;
    height: auto;
}
.bk-empfehlung--editorial .bk-empfehlung__content {
    flex: 1;
    min-width: 0;
}
.bk-empfehlung--editorial .bk-empfehlung__name {
    margin: 0 0 0.15em;
    font-size: 1.25em;
    color: var(--bk-text-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.bk-empfehlung--editorial .bk-empfehlung__price {
    font-weight: 700;
    font-size: 1.05em;
    margin-bottom: 0.4em;
    color: var(--bk-text-heading);
    background: transparent;
    padding: 0;
    border: 0;
    font-variant-numeric: tabular-nums;
}
.bk-empfehlung--editorial .bk-empfehlung__text {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.93em;
    line-height: 1.55;
}
.bk-empfehlung--editorial .bk-empfehlung__usps {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.93em;
    line-height: 1.55;
}
.bk-empfehlung--editorial .bk-empfehlung__cta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45em;
    min-width: 185px;
    align-self: center;
    margin-top: 0;
}
.bk-empfehlung--editorial .bk-empfehlung__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.7em 1.15em;
    border-radius: var(--bk-radius-s);
    font-size: 0.92em;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    background: var(--bk-cta-bg);
    color: var(--bk-cta-fg);
    border: 0;
    box-shadow: none;
    transition: background 0.15s;
}
.bk-empfehlung--editorial .bk-empfehlung__btn:hover {
    background: #1c9a3b; /* darken theme green ($col4), match Bravekin .btn:hover */
    color: var(--bk-cta-fg);
}
.bk-empfehlung--editorial .bk-empfehlung__btn-ext {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.bk-empfehlung--editorial .bk-empfehlung__detail-link {
    font-size: 0.82em;
    color: var(--bk-text-muted);
    text-decoration: none;
    text-align: center;
    padding: 0.2em;
    margin-top: 0;
}
.bk-empfehlung--editorial .bk-empfehlung__detail-link:hover {
    color: var(--bk-text-heading);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .bk-empfehlung--editorial .bk-empfehlung__body {
        flex-direction: column;
        gap: 1em;
    }
    .bk-empfehlung--editorial .bk-empfehlung__left {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        gap: 1em;
    }
    .bk-empfehlung--editorial .bk-empfehlung__cta {
        width: 100%;
        min-width: 0;
    }
}

/* ==========================================================================
   KSV Editorial Gold — Element B (.bk-provider-detail + Sub-Elemente)
   Container-Shortcode [provider_detail] mit Header, Body, Footer-CTA-Band.
   Sub-Elemente: [preise], [ideal_fuer], [pro_contra]--editorial.
   Markup wird nur auf KSV registriert; CSS scoped trotzdem unter
   .bk-editorial (Belt-and-Suspenders gegen versehentliche Off-Cluster-Nutzung).
   ========================================================================== */
.bk-editorial .bk-provider-detail {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow-card);
    margin: 2em 0;
    overflow: hidden;
    color: var(--bk-text-body);
}

/* ---- Header ---- */
.bk-editorial .bk-provider-detail__head {
    display: flex;
    align-items: center;
    gap: 1.5em;
    padding: 1.5em 1.75em;
    background: var(--bk-surface-header);
    border-bottom: 1px solid var(--bk-border-header);
}
.bk-editorial .bk-provider-detail__logo {
    flex: 0 0 160px;
    max-width: 160px;
}
.bk-editorial .bk-provider-detail__logo a {
    display: block;
    line-height: 0;
    box-shadow: none;
}
.bk-editorial .bk-provider-detail__logo img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
}
.bk-editorial .bk-provider-detail__title-block { flex: 1; min-width: 0; }
.bk-editorial .bk-provider-detail__title {
    margin: 0 0 0.15em;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.bk-editorial .bk-provider-detail__strap {
    margin: 0 0 0.35em;
    font-size: 0.98em;
    color: var(--bk-text-muted);
    font-weight: 400;
    line-height: 1.3;
}
.bk-editorial .bk-provider-detail__price-top {
    font-size: 0.88em;
    font-weight: 600;
    color: var(--bk-text-heading);
}
.bk-editorial .bk-provider-detail__head-cta {
    flex: 0 0 auto;
    align-self: center;
}
.bk-editorial .bk-provider-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45em;
    padding: 0.78em 1.4em;
    border-radius: var(--bk-radius-s);
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    background: var(--bk-cta-bg);
    color: var(--bk-cta-fg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background 0.15s;
    border: 0;
}
.bk-editorial .bk-provider-detail__btn:hover {
    background: #1c9a3b; /* darken theme green ($col4), match Bravekin .btn:hover */
    color: var(--bk-cta-fg);
}

/* ---- Body ---- */
.bk-editorial .bk-provider-detail__body {
    padding: 1.6em 1.75em 0.5em;
}
.bk-editorial .bk-provider-detail__body p {
    line-height: 1.6;
    font-size: 0.97em;
    color: var(--bk-text-body);
    margin: 0 0 1.25em;
}

/* ---- [preise] Sub-Block ---- */
.bk-editorial .bk-preise__label {
    display: block;
    color: var(--bk-accent-label);
    margin: 0.5em 0 0.6em;
}
.bk-editorial .bk-preise {
    margin: 0 0 1.5em;
    border-top: 1px solid var(--bk-border);
}
.bk-editorial .bk-preise__row {
    display: flex;
    align-items: baseline;
    padding: 0.65em 0;
    border-bottom: 1px solid var(--bk-border);
    font-size: 0.94em;
    gap: 1em;
}
.bk-editorial .bk-preise__pos {
    flex: 1;
    color: var(--bk-text-body);
    min-width: 0;
}
.bk-editorial .bk-preise__val {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--bk-text-heading);
    font-variant-numeric: tabular-nums;
    text-align: right;
}
.bk-editorial .bk-preise__note {
    display: block;
    font-size: 0.82em;
    color: var(--bk-text-dim);
    font-weight: 400;
    margin-top: 0.1em;
}

/* ---- [pro_contra]--editorial Override (kein interner CTA, ruhigere Kacheln) ---- */
.bk-editorial .bk-procontra--editorial {
    margin: 0.25em 0 1.5em;
}
.bk-editorial .bk-procontra--editorial .bk-procontra__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
.bk-editorial .bk-procontra--editorial .bk-procontra__pro,
.bk-editorial .bk-procontra--editorial .bk-procontra__contra {
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius-s);
    padding: 1em 1.15em;
    background: var(--bk-surface-cream);
}
.bk-editorial .bk-procontra--editorial h4 {
    display: flex;
    align-items: center;
    gap: 0.45em;
    margin: 0 0 0.65em;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 0;
    padding: 0;
}
.bk-editorial .bk-procontra--editorial .bk-procontra__pro h4 { color: var(--bk-pro-fg); }
.bk-editorial .bk-procontra--editorial .bk-procontra__contra h4 { color: var(--bk-contra-fg); }
.bk-editorial .bk-procontra--editorial .bk-procontra__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}
.bk-editorial .bk-procontra--editorial .bk-procontra__pro .bk-procontra__icon {
    background: var(--bk-pro-bg);
    color: var(--bk-pro-fg);
}
.bk-editorial .bk-procontra--editorial .bk-procontra__contra .bk-procontra__icon {
    background: var(--bk-contra-bg);
    color: var(--bk-contra-fg);
}
.bk-editorial .bk-procontra--editorial ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bk-editorial .bk-procontra--editorial li {
    position: relative;
    padding-left: 1.1em;
    margin-bottom: 0.4em;
    font-size: 0.92em;
    color: var(--bk-text-body);
    line-height: 1.45;
}
.bk-editorial .bk-procontra--editorial li::before {
    position: absolute;
    left: 0;
    top: 0.1em;
    font-weight: 700;
}
.bk-editorial .bk-procontra--editorial .bk-procontra__pro li::before {
    content: "\2713"; /* ✓ */
    color: var(--bk-pro-fg);
}
.bk-editorial .bk-procontra--editorial .bk-procontra__contra li::before {
    content: "\2212"; /* − */
    color: var(--bk-contra-fg);
}

/* ---- [ideal_fuer] Callout ---- */
.bk-editorial .bk-ideal-fuer {
    display: flex;
    gap: 0.85em;
    background: var(--bk-accent-soft);
    border: 1px solid var(--bk-accent-border);
    border-radius: var(--bk-radius-s);
    padding: 1em 1.25em;
    margin: 0.5em 0 1.5em;
}
.bk-editorial .bk-ideal-fuer__icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: var(--bk-accent);
    margin-top: 0.1em;
}
.bk-editorial .bk-ideal-fuer__label {
    display: block;
    font-size: 0.74em;
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent-label);
    margin-bottom: 0.25em;
}
.bk-editorial .bk-ideal-fuer__text p {
    margin: 0;
    font-size: 0.94em;
    line-height: 1.55;
    color: #4a4530;
}

/* ---- Footer-CTA-Band ---- */
.bk-editorial .bk-provider-detail__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    flex-wrap: wrap;
    padding: 1.15em 1.75em;
    background: var(--bk-surface-cream);
    border-top: 1px solid var(--bk-border);
}
.bk-editorial .bk-provider-detail__foot-hint {
    font-size: 0.9em;
    color: var(--bk-text-muted);
}
.bk-editorial .bk-provider-detail__foot-actions {
    display: flex;
    align-items: center;
    gap: 1.1em;
    flex-wrap: wrap;
}
.bk-editorial .bk-provider-detail__detail-link {
    font-size: 0.9em;
    color: var(--bk-text-body);
    text-decoration: none;
    border-bottom: 1px dotted #999;
}
.bk-editorial .bk-provider-detail__detail-link:hover {
    color: var(--bk-text-heading);
    border-bottom-color: var(--bk-text-heading);
}

@media (max-width: 900px) {
    .bk-editorial .bk-provider-detail__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
    .bk-editorial .bk-provider-detail__head-cta { align-self: stretch; }
    .bk-editorial .bk-provider-detail__btn { width: 100%; }
    .bk-editorial .bk-procontra--editorial .bk-procontra__columns {
        grid-template-columns: 1fr;
    }
    .bk-editorial .bk-provider-detail__foot {
        flex-direction: column;
        align-items: flex-start;
    }
    .bk-editorial .bk-provider-detail__foot-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .bk-editorial .bk-provider-detail__detail-link { text-align: center; }
}

/* ==========================================================================
   KSV Editorial Gold — Element C (.bk-szenario)
   Kosten-Szenario-Karte mit Header, Hero-Totals und Body (typisch nested [preise]).
   ========================================================================== */
.bk-editorial .bk-szenario {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow-card);
    margin: 1.5em 0;
    overflow: hidden;
    color: var(--bk-text-body);
}

/* ---- Header ---- */
.bk-editorial .bk-szenario__head {
    padding: 1.25em 1.75em 1.1em;
    background: var(--bk-surface-header);
    border-bottom: 1px solid var(--bk-border-header);
}
.bk-editorial .bk-szenario__num {
    display: inline-block;
    font-size: var(--bk-label-size);
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 0.3em;
}
.bk-editorial .bk-szenario__title {
    margin: 0 0 0.4em;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.bk-editorial .bk-szenario__meta {
    font-size: 0.88em;
    color: var(--bk-text-muted);
    line-height: 1.5;
}
.bk-editorial .bk-szenario__meta-sep {
    color: var(--bk-accent);
    margin: 0 0.4em;
}

/* ---- Hero-Totals ---- */
.bk-editorial .bk-szenario__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bk-accent-soft);
    border-bottom: 1px solid var(--bk-accent-border);
}
.bk-editorial .bk-szenario__hero-col {
    padding: 1.1em 1.75em;
}
.bk-editorial .bk-szenario__hero-col + .bk-szenario__hero-col {
    border-left: 1px solid var(--bk-accent-border);
}
.bk-editorial .bk-szenario__hero-label {
    display: block;
    font-size: 0.68em;
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent-label);
    margin-bottom: 0.25em;
}
.bk-editorial .bk-szenario__hero-val {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--bk-text-heading);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.bk-editorial .bk-szenario__hero-val em {
    display: block;
    font-size: 0.48em;
    font-weight: 500;
    color: var(--bk-text-dim);
    font-style: normal;
    letter-spacing: 0;
    margin-top: 0.25em;
}

/* ---- Body (typisch nested [preise]) ---- */
.bk-editorial .bk-szenario__body {
    padding: 1.4em 1.75em 1.5em;
}
.bk-editorial .bk-szenario__body > p {
    line-height: 1.6;
    font-size: 0.94em;
    color: var(--bk-text-body);
    margin: 0 0 1em;
}
/* Nested [preise] inside [szenario]: Group-Label dezenter (grau statt gold) */
.bk-editorial .bk-szenario__body .bk-preise__label {
    color: var(--bk-text-dim);
    margin: 0 0 0.55em;
    font-size: 0.68em;
}
.bk-editorial .bk-szenario__body .bk-preise + .bk-preise__label,
.bk-editorial .bk-szenario__body .bk-preise + .bk-preise {
    margin-top: 1.25em;
}

@media (max-width: 768px) {
    .bk-editorial .bk-szenario__hero {
        grid-template-columns: 1fr;
    }
    .bk-editorial .bk-szenario__hero-col + .bk-szenario__hero-col {
        border-left: 0;
        border-top: 1px solid var(--bk-accent-border);
    }
    .bk-editorial .bk-szenario__hero-val {
        font-size: 1.5em;
    }
    .bk-editorial .bk-szenario__head,
    .bk-editorial .bk-szenario__hero-col,
    .bk-editorial .bk-szenario__body {
        padding-left: 1.25em;
        padding-right: 1.25em;
    }
}

/* ==========================================================================
   KSV Editorial Gold — Element L (.bk-checkliste)
   Demo-Checkliste mit Click-Toggle, localStorage-Persist, Drucken-Button.
   JS in /js/bk-checklist.js, registriert in functions.php hinter bk_is_ksv().
   ========================================================================== */
.bk-editorial .bk-checkliste {
    background: var(--bk-surface);
    border: 1px solid var(--bk-border);
    border-left: 4px solid var(--bk-accent);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow-card);
    margin: 1.5em 0;
    overflow: hidden;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--bk-text-body);
}
.bk-editorial .bk-checkliste__head {
    padding: 1.2em 1.75em 1em;
    background: var(--bk-surface-header);
    border-bottom: 1px solid var(--bk-border-header);
}
.bk-editorial .bk-checkliste__label {
    display: inline-block;
    font-size: var(--bk-label-size);
    font-weight: 800;
    letter-spacing: var(--bk-label-tracking);
    text-transform: uppercase;
    color: var(--bk-accent);
    margin-bottom: 0.25em;
}
.bk-editorial .bk-checkliste__title {
    margin: 0 0 0.4em;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--bk-text-heading);
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.bk-editorial .bk-checkliste__sub {
    margin: 0;
    color: var(--bk-text-body);
    font-size: 0.94em;
    line-height: 1.5;
}

.bk-editorial .bk-checkliste__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7em 1.75em;
    background: #faf7ed;
    border-bottom: 1px solid var(--bk-border-header);
    font-size: 0.85em;
    flex-wrap: wrap;
    gap: 0.6em;
}
.bk-editorial .bk-checkliste__progress { color: var(--bk-text-muted); }
.bk-editorial .bk-checkliste__progress b {
    color: var(--bk-text-heading);
    font-weight: 700;
}
.bk-editorial .bk-checkliste__print {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-size: 0.85em;
    color: var(--bk-text-body);
    text-decoration: none;
    padding: 0.4em 0.8em;
    border: 1px solid #ddd;
    border-radius: var(--bk-radius-s);
    background: var(--bk-surface);
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    transition: border-color 0.15s, color 0.15s;
}
.bk-editorial .bk-checkliste__print:hover {
    border-color: var(--bk-accent);
    color: var(--bk-accent-label);
}
.bk-editorial .bk-checkliste__print svg {
    width: 13px;
    height: 13px;
}

.bk-editorial .bk-checkliste__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bk-editorial .bk-checkliste__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85em;
    padding: 0.85em 1.75em;
    border-bottom: 1px solid var(--bk-border);
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
    outline: none;
}
.bk-editorial .bk-checkliste__item:last-child { border-bottom: none; }
.bk-editorial .bk-checkliste__item:hover { background: var(--bk-surface-row-hover); }
.bk-editorial .bk-checkliste__item:focus-visible {
    background: var(--bk-surface-row-hover);
    box-shadow: inset 0 0 0 2px var(--bk-accent);
}
.bk-editorial .bk-checkliste__check {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1.5px solid #c9b987;
    border-radius: 3px;
    background: var(--bk-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1em;
    transition: all 0.15s;
}
.bk-editorial .bk-checkliste__check svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    color: #fff;
}
.bk-editorial .bk-checkliste__text {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--bk-text-body);
}
.bk-editorial .bk-checkliste__text b {
    color: var(--bk-text-heading);
    font-weight: 700;
}
.bk-editorial .bk-checkliste__item.checked .bk-checkliste__check {
    background: var(--bk-accent);
    border-color: var(--bk-accent);
}
.bk-editorial .bk-checkliste__item.checked .bk-checkliste__check svg { opacity: 1; }
.bk-editorial .bk-checkliste__item.checked .bk-checkliste__text {
    color: var(--bk-text-dim);
    text-decoration: line-through;
    text-decoration-color: #d0c8b0;
}
.bk-editorial .bk-checkliste__item.checked .bk-checkliste__text b {
    color: var(--bk-text-dim);
}

.bk-editorial .bk-checkliste__foot {
    padding: 0.85em 1.75em;
    background: #faf7ed;
    border-top: 1px solid var(--bk-border-header);
    font-size: 0.88em;
    color: var(--bk-accent-label);
    font-style: italic;
}
.bk-editorial .bk-checkliste__foot b {
    font-style: normal;
    font-weight: 700;
    color: var(--bk-text-heading);
}

/* Print: Drucken-Button öffnet die Liste in einem versteckten Iframe und druckt
   dieses (siehe /js/bk-checklist.js, printChecklist()). Kein @media-print-Scope
   auf die Hauptseite nötig — das war fragil bei transform/contain auf Ancestors
   und produzierte leere PDFs. Iframe-Stylesheet ist im JS inline. */
