/* ============================================================
   .bodywebsite BLOXERA BAUKASTEN v0.5 - Zentrales Stylesheet
   Ein CSS fuer alle Sites. Theming ueber Custom Properties.
   Regeln: keine Inline-Styles in Seiten, .bodywebsite keine !important, .bodywebsite Elemente nur ueber .bk-* Klassen stylen.
   ============================================================ */

/* ---------- 1. THEME-TOKENS (pro Site ueberschreiben) ---------- */
.bodywebsite {
  /* Marke */
  --bk-brand: #01bac6;        /* bloxera | dolicenter: identisch | doligov: ggf. dunkler */
  --bk-brand-deep: #018e97;   /* Hover/aktiv */
  --bk-brand-tint: #e6f8f9;   /* Flaechen-Tint */
  --bk-on-brand: #0b1215;     /* Text AUF Tuerkis: fixes Fast-Schwarz, nie Theme-Tinte */
  --bk-brand-text: #01737e;   /* Teal als TEXT auf hellem Grund (WCAG AA 4.5:1+) */
  /* Querbezug Dolibarr */
  --bk-blue: #263c5b;         /* Dolibarr-Dunkelblau (Interface/Logo-Familie) */
  /* Neutrale */
  --bk-ink: #2e3338;          /* bloxera: eigene Identitaet - Anthrazit */
  --bk-slate: #5c646c;        /* Sekundaertext neutral */
  --bk-paper: #ffffff;
  --bk-mist: #f4f5f6;         /* Wechselflaechen neutralgrau */
  --bk-line: #e0e3e6;
  /* Typo */
  --bk-font: "Avenir Next", "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
  --bk-max: 1120px;
  --bk-radius: 4px;
}

/* ---------- 2. BASIS ---------- */
.bodywebsite { margin: 0; background: var(--bk-paper); color: var(--bk-ink);
  font-family: var(--bk-font); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; }
.bodywebsite * , .bodywebsite *::before, .bodywebsite *::after { box-sizing: border-box; }
.bodywebsite img { max-width: 100%; height: auto; display: block; }
.bodywebsite a { color: var(--bk-brand-text); text-decoration: none; }
.bodywebsite a:hover { text-decoration: underline; }
.bodywebsite :focus-visible { outline: 3px solid var(--bk-brand-text); outline-offset: 2px; }
.bodywebsite h1, .bodywebsite h2, .bodywebsite h3 { line-height: 1.15; margin: 0 0 0.5em;
  font-weight: 700; letter-spacing: -0.015em; }
.bodywebsite p { margin: 0 0 1em; }

/* Layoutschale */
.bodywebsite .bk-wrap { max-width: var(--bk-max); margin: 0 auto; padding: 0 24px; }
.bodywebsite .bk-section { padding: 72px 0; }
.bodywebsite .bk-section--mist { background: var(--bk-mist); }
.bodywebsite .bk-section--ink { background: var(--bk-ink); color: #fff; }

/* Eyebrow mit Baustein-Marker (Signatur-Element) */
.bodywebsite .bk-eyebrow { display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bk-brand-text); margin-bottom: 14px; }
.bodywebsite .bk-eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--bk-brand);
  flex: none; }
.bodywebsite .bk-section--ink .bk-eyebrow { color: #fff; }

/* Buttons */
/* .bodywebsite-Praefix noetig: schlaegt die Basisregel .bodywebsite a */
.bodywebsite .bk-btn { display: inline-block; padding: 13px 26px; border-radius: var(--bk-radius);
  font-weight: 600; font-size: 16px; border: 2px solid var(--bk-brand);
  transition: background 0.15s ease, color 0.15s ease; }
.bodywebsite .bk-btn--primary { background: var(--bk-brand); color: var(--bk-on-brand); }
.bodywebsite .bk-btn--primary:hover { filter: brightness(0.93); text-decoration: none; }
.bodywebsite .bk-btn--ghost { background: transparent; color: var(--bk-ink); border-color: var(--bk-brand-deep); }
.bodywebsite .bk-btn--ghost:hover { background: var(--bk-brand-tint); color: var(--bk-ink);
  text-decoration: none; }
.bodywebsite .bk-section--ink .bk-btn--ghost,
.bodywebsite .bk-hero--ink .bk-btn--ghost { color: #fff; }
.bodywebsite .bk-section--ink .bk-btn--ghost:hover,
.bodywebsite .bk-hero--ink .bk-btn--ghost:hover { color: var(--bk-ink); }

/* ---------- 3. ELEMENT: HEADER (header-bk) ---------- */
.bodywebsite .bk-header { background: var(--bk-paper); border-bottom: 1px solid var(--bk-line);
  position: sticky; top: 0; z-index: 50; }
.bodywebsite .bk-header__row { display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 24px; }
.bodywebsite .bk-logo { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; color: var(--bk-ink); }
.bodywebsite .bk-logo b { color: var(--bk-brand); }
.bodywebsite .bk-nav { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.bodywebsite .bk-nav a { color: var(--bk-ink); font-weight: 600; font-size: 15.5px; }
.bodywebsite .bk-nav a:hover { color: var(--bk-brand-deep); text-decoration: none; }

/* ---------- 4. ELEMENT: HERO (e-hero) ---------- */
/* Signatur: Blueprint-Raster - die Marke ist MODULARE Digitalisierung */
.bodywebsite .bk-hero { position: relative; overflow: hidden;
  background:
    linear-gradient(var(--bk-grid-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--bk-grid-a) 1px, transparent 1px),
    linear-gradient(var(--bk-grid-b) 1px, transparent 1px),
    linear-gradient(90deg, var(--bk-grid-b) 1px, transparent 1px),
    var(--bk-paper);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px; }
.bodywebsite .bk-hero__inner { padding: 96px 0 88px; max-width: 780px; }
.bodywebsite .bk-hero h1 { font-size: clamp(34px, 5.2vw, 56px); font-weight: 800; letter-spacing: -0.025em; }
.bodywebsite .bk-hero__lead { font-size: 20px; color: var(--bk-slate); max-width: 640px; margin-bottom: 30px; }
.bodywebsite .bk-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 5. ELEMENT: TRUST-BADGES (e-badges) ---------- */
.bodywebsite .bk-badges { border-top: 1px solid var(--bk-line); border-bottom: 1px solid var(--bk-line);
  background: var(--bk-paper); }
.bodywebsite .bk-badges__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bodywebsite .bk-badge { padding: 22px 24px; border-left: 1px solid var(--bk-line); }
.bodywebsite .bk-badge:first-child { border-left: 0; }
.bodywebsite .bk-badge__t { font-weight: 700; font-size: 15.5px; }
.bodywebsite .bk-badge__s { font-size: 13.5px; color: var(--bk-slate); }

/* ---------- 6. ELEMENT: KARTEN-GRID (e-cards) ---------- */
.bodywebsite .bk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bodywebsite .bk-card { background: var(--bk-paper); border: 1px solid var(--bk-line);
  border-top: 3px solid var(--bk-brand); border-radius: var(--bk-radius);
  padding: 28px 26px; display: flex; flex-direction: column; }
.bodywebsite .bk-card h3 { font-size: 20px; }
.bodywebsite .bk-card p { color: var(--bk-slate); font-size: 15.5px; flex-grow: 1; }
.bodywebsite .bk-card__link { font-weight: 700; font-size: 15.5px; }

/* ---------- 7. ELEMENT: METHODIK-SCHRITTE (e-steps) ---------- */
/* Nummerierung hier bewusst: es IST eine Sequenz */
.bodywebsite .bk-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  counter-reset: bkstep; }
.bodywebsite .bk-step { counter-increment: bkstep; }
.bodywebsite .bk-step::before { content: counter(bkstep, decimal-leading-zero); display: block;
  font-size: 15px; font-weight: 800; color: var(--bk-brand);
  border-bottom: 2px solid var(--bk-brand); padding-bottom: 6px; margin-bottom: 12px; }
.bodywebsite .bk-step h3 { font-size: 17.5px; }
.bodywebsite .bk-step p { font-size: 14.5px; color: var(--bk-slate); margin: 0; }
.bodywebsite .bk-section--ink .bk-step p { color: #b9c8d2; }

/* ---------- 8. ELEMENT: MODUL-KARTE (e-modulkarte) ---------- */
/* Zwei Rollen: Referenz (bloxera) | Produkt (dolicenter/dolistore) */
.bodywebsite .bk-modul { display: grid; grid-template-columns: 1fr 300px; gap: 0;
  border: 1px solid var(--bk-line); border-radius: var(--bk-radius);
  overflow: hidden; background: var(--bk-paper); }
.bodywebsite .bk-modul__body { padding: 30px 32px; }
.bodywebsite .bk-modul__meta { background: var(--bk-mist); padding: 30px 28px;
  border-left: 1px solid var(--bk-line); display: flex; flex-direction: column; gap: 8px; }
.bodywebsite .bk-modul__meta dt { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bk-slate); }
.bodywebsite .bk-modul__meta dd { margin: 0 0 10px; font-weight: 600; font-size: 15px; }
.bodywebsite .bk-modul__meta .bk-btn { margin-top: auto; text-align: center; }
.bodywebsite .bk-tag { display: inline-block; background: var(--bk-brand-tint); color: var(--bk-brand-text);
  font-size: 12.5px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
  margin: 0 6px 8px 0; }

/* ---------- 9. ELEMENT: CTA-BAND (e-cta) ---------- */
.bodywebsite .bk-cta { text-align: center; }
.bodywebsite .bk-cta h2 { font-size: clamp(26px, 3.4vw, 38px); }
.bodywebsite .bk-cta p { color: #b9c8d2; max-width: 560px; margin: 0 auto 26px; }

/* ---------- 10. ELEMENT: LOGO-BAND (e-logoband) ---------- */
.bodywebsite .bk-logoband { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  align-items: center; opacity: 0.75; }
.bodywebsite .bk-logoband span { font-weight: 700; color: var(--bk-slate); font-size: 15px;
  letter-spacing: 0.02em; }

/* ---------- 11. ELEMENT: BLOG-TEASER (e-blogteaser) ---------- */
.bodywebsite .bk-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bodywebsite .bk-post { border: 1px solid var(--bk-line); border-radius: var(--bk-radius);
  padding: 24px; background: var(--bk-paper); }
.bodywebsite .bk-post time { font-size: 13px; color: var(--bk-slate); letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 600; }
.bodywebsite .bk-post h3 { font-size: 18px; margin: 8px 0 10px; }
.bodywebsite .bk-post p { font-size: 14.5px; color: var(--bk-slate); margin: 0; }

/* ---------- 12. STYLEGUIDE-HILFEN ---------- */
.bodywebsite .bk-sg-token { display: inline-flex; align-items: center; gap: 10px; margin: 0 18px 12px 0;
  font-size: 14px; }
.bodywebsite .bk-sg-token i { width: 26px; height: 26px; border: 1px solid var(--bk-line);
  border-radius: 4px; display: inline-block; }
.bodywebsite .bk-sg-note { border-left: 3px solid var(--bk-brand); background: var(--bk-brand-tint);
  padding: 14px 18px; font-size: 15px; border-radius: 0 var(--bk-radius) var(--bk-radius) 0; }

/* ---------- 13. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .bodywebsite .bk-badges__grid { grid-template-columns: repeat(2, 1fr); }
  .bodywebsite .bk-badge:nth-child(3) { border-left: 0; }
  .bodywebsite .bk-badge { border-top: 1px solid var(--bk-line); }
  .bodywebsite .bk-badge:nth-child(-n+2) { border-top: 0; }
  .bodywebsite .bk-cards, .bodywebsite .bk-steps, .bodywebsite .bk-posts { grid-template-columns: 1fr 1fr; }
  .bodywebsite .bk-modul { grid-template-columns: 1fr; }
  .bodywebsite .bk-modul__meta { border-left: 0; border-top: 1px solid var(--bk-line); }
}
@media (max-width: 620px) {
  .bodywebsite .bk-section { padding: 52px 0; }
  .bodywebsite .bk-hero__inner { padding: 64px 0 56px; }
  .bodywebsite .bk-cards, .bodywebsite .bk-steps, .bodywebsite .bk-posts, .bodywebsite .bk-badges__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-badge { border-left: 0; }
  .bodywebsite .bk-nav { display: none; }
  .bodywebsite .bk-burger { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .bodywebsite * { transition: none; animation: none; }
}

/* ---------- 14. LOGO ---------- */
.bodywebsite .bk-logo-img { height: 36px; width: auto; display: block; }
.bodywebsite .bk-logo-text { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }

/* ---------- 15. MOBILE-NAV (CSS-only, kein JS) ---------- */
.bodywebsite .bk-burger { display: none; position: relative; }
.bodywebsite .bk-burger summary { list-style: none; cursor: pointer; font-weight: 700;
  padding: 8px 14px; border: 2px solid var(--bk-line); border-radius: var(--bk-radius);
  font-size: 15px; }
.bodywebsite .bk-burger summary::-webkit-details-marker { display: none; }
.bodywebsite .bk-burger[open] summary { border-color: var(--bk-brand); color: var(--bk-brand-deep); }
.bodywebsite .bk-burger__nav { position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--bk-paper); border: 1px solid var(--bk-line); border-radius: var(--bk-radius);
  box-shadow: 0 8px 24px rgba(16,34,46,0.12); min-width: 220px; padding: 8px 0; z-index: 60; }
.bodywebsite .bk-burger__nav a { display: block; padding: 11px 18px; color: var(--bk-ink);
  font-weight: 600; font-size: 15.5px; }
.bodywebsite .bk-burger__nav a:hover { background: var(--bk-mist); text-decoration: none; }

/* ---------- 16. ELEMENT: PREISTABELLE (e-preistabelle) ---------- */
.bodywebsite .bk-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  align-items: stretch; }
.bodywebsite .bk-price { border: 1px solid var(--bk-line); border-radius: var(--bk-radius);
  background: var(--bk-paper); padding: 30px 28px; display: flex; flex-direction: column; }
.bodywebsite .bk-price--featured { border: 2px solid var(--bk-brand); position: relative; }
.bodywebsite .bk-price__flag { position: absolute; top: -13px; left: 24px; background: var(--bk-brand);
  color: var(--bk-on-brand); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 99px; }
.bodywebsite .bk-price h3 { font-size: 19px; }
.bodywebsite .bk-price__amount { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 2px; }
.bodywebsite .bk-price__amount small { font-size: 15px; font-weight: 600; color: var(--bk-slate); }
.bodywebsite .bk-price ul { list-style: none; margin: 18px 0 24px; padding: 0; flex-grow: 1; }
.bodywebsite .bk-price li { padding: 7px 0 7px 22px; position: relative; font-size: 15px;
  color: var(--bk-slate); border-top: 1px solid var(--bk-mist); }
.bodywebsite .bk-price li::before { content: ""; position: absolute; left: 0; top: 14px;
  width: 9px; height: 9px; background: var(--bk-brand); }

/* ---------- 17. ELEMENT: FALLSTUDIE (e-fallstudie) ---------- */
.bodywebsite .bk-case { border: 1px solid var(--bk-line); border-left: 4px solid var(--bk-brand);
  border-radius: var(--bk-radius); background: var(--bk-paper); padding: 34px 36px; }
.bodywebsite .bk-case blockquote { margin: 0 0 18px; font-size: 21px; line-height: 1.5;
  font-weight: 600; letter-spacing: -0.01em; }
.bodywebsite .bk-case__who { color: var(--bk-slate); font-size: 15px; margin-bottom: 22px; }
.bodywebsite .bk-case__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  border-top: 1px solid var(--bk-line); padding-top: 20px; }
.bodywebsite .bk-case__facts b { display: block; font-size: 22px; letter-spacing: -0.01em; }
.bodywebsite .bk-case__facts span { font-size: 13.5px; color: var(--bk-slate); }

/* ---------- 18. THEMING (Token-Overrides je Site) ----------
   .bodywebsite Produktion: im styles.css.php der jeweiligen Site NUR den
   Token-Block in Abschnitt 1 anpassen. Die Klassen hier dienen
   der Demo auf theming.php - Elemente bleiben identisch.      */
.bk-theme-dolicenter { --bk-ink: #4b5055; --bk-slate: #6b7076;
  --bk-mist: #f4f4f5; --bk-line: #e1e3e5; }
/* nachrangige Blau-Partie: der Baustein-Marker traegt das Dolibarr-Blau */
.bodywebsite .bk-theme-dolicenter .bk-eyebrow::before { background: var(--bk-blue); }
.bodywebsite .bk-theme-doligov { --bk-ink: #263c5b; --bk-slate: #4d5a70;
  --bk-mist: #f2f4f7; --bk-line: #dde2e9; --bk-brand-tint: #eaf7f8; }
.bodywebsite .bk-theme-dolicenter .bk-section--ink, .bodywebsite .bk-theme-doligov .bk-section--ink {
  background: var(--bk-ink); }

@media (max-width: 960px) {
  .bodywebsite .bk-pricing { grid-template-columns: 1fr; }
  .bodywebsite .bk-case__facts { grid-template-columns: 1fr; gap: 10px; }
}


/* ---------- 19. RASTER ALS TOKEN (v0.3) ----------
   .bodywebsite Blueprint-Raster im Hero pro Site regelbar. doligov: aus. */
.bodywebsite { --bk-grid-a: rgba(1,186,198,0.10); --bk-grid-b: rgba(1,186,198,0.05); }
.bodywebsite .bk-theme-doligov { --bk-grid-a: transparent; --bk-grid-b: transparent; }

/* ---------- 20. HERO-VARIANTE DUNKEL (doligov) ---------- */
.bodywebsite .bk-hero--ink { background: var(--bk-ink); }
.bodywebsite .bk-hero--ink h1, .bodywebsite .bk-hero--ink .bk-eyebrow { color: #fff; }
.bodywebsite .bk-hero--ink .bk-eyebrow { color: #fff; }
.bodywebsite .bk-hero--ink .bk-hero__lead { color: #b9c8d2; }

/* ---------- 21. ELEMENT: WEG (e-weg) ----------
   .bodywebsite Geschwungener Pfad mit Etappen. Signatur-Element doligov.
   Desktop: SVG-Kurve hinter 4 Stationen. Mobil: vertikale Liste. */
.bk-weg { position: relative; margin-top: 44px; }
.bodywebsite .bk-weg__svg { position: absolute; top: 0; left: 0; width: 100%; height: 190px; z-index: 0; }
.bodywebsite .bk-weg__svg path { fill: none; stroke: var(--bk-brand); stroke-width: 3;
  stroke-dasharray: 2 10; stroke-linecap: round; }
.bodywebsite .bk-weg__stops { position: relative; z-index: 1; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 26px; }
.bodywebsite .bk-weg__stop { text-align: center; padding: 0 8px; }
.bodywebsite .bk-weg__stop:nth-child(odd) { padding-top: 32px; }
.bodywebsite .bk-weg__stop:nth-child(even) { padding-top: 112px; }
.bodywebsite .bk-weg__dot { width: 30px; height: 30px; border-radius: 50%;
  background: var(--bk-ink); color: #fff; font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--bk-brand); margin-bottom: 14px; }
.bodywebsite .bk-weg__stop h3 { font-size: 17px; margin-bottom: 6px; }
.bodywebsite .bk-weg__stop p { font-size: 14px; color: var(--bk-slate); margin: 0; }
.bodywebsite .bk-weg__line { display: none; }
@media (max-width: 960px) {
  .bodywebsite .bk-weg__svg { display: none; }
  .bodywebsite .bk-weg__stops { grid-template-columns: 1fr; gap: 0; }
  .bodywebsite .bk-weg__stop, .bodywebsite .bk-weg__stop:nth-child(odd), .bodywebsite .bk-weg__stop:nth-child(even) {
    text-align: left; padding: 0 0 26px 46px; position: relative; }
  .bodywebsite .bk-weg__dot { position: absolute; left: 0; top: 0; margin: 0; }
  .bodywebsite .bk-weg__line { display: block; position: absolute; left: 14px; top: 34px;
    bottom: 4px; width: 0; border-left: 3px dashed var(--bk-brand); opacity: 0.45; }
  .bodywebsite .bk-weg__stop:last-child .bk-weg__line { display: none; }
}

/* ---------- 22. BEWEIS-BAND (Zahlen-These) ---------- */
.bodywebsite .bk-proof { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap;
  text-align: center; }
.bodywebsite .bk-proof b { display: block; font-size: 52px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--bk-brand); line-height: 1.1; }
.bodywebsite .bk-proof span { font-size: 15px; color: #b9c8d2; max-width: 220px; display: block; }


/* ==================================================================
   PHASE-3-ERGAENZUNGEN bloxera.com (Relaunch 2026-07)
   ================================================================== */
/* Skip-Link (Barrierefreiheit) */
.bodywebsite .bk-skip { position: absolute; left: -9999px; top: 0; background: var(--bk-ink);
  color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 var(--bk-radius) 0; }
.bodywebsite .bk-skip:focus { left: 0; }

/* Aktive Seite in der Navigation */
.bodywebsite .bk-nav a.bk-active, .bodywebsite .bk-burger__nav a.bk-active {
  color: var(--bk-brand-deep); box-shadow: inset 0 -2px 0 var(--bk-brand); }
.bodywebsite .bk-nav__login { padding: 9px 18px; font-size: 15px; }

/* Schlanker Hero fuer Bestands- und Unterseiten */
.bodywebsite .bk-hero--slim .bk-wrap { padding: 52px 0 40px; }
.bodywebsite .bk-hero--slim h1 { font-size: clamp(26px, 3.4vw, 40px); max-width: 900px; }

/* Prosa-Bloecke */
.bodywebsite .bk-prose { max-width: 780px; }
.bodywebsite .bk-prose p { margin-bottom: 16px; }
.bodywebsite .bk-note { border-left: 3px solid var(--bk-brand); background: var(--bk-brand-tint);
  padding: 12px 16px; font-size: 14.5px; border-radius: 0 var(--bk-radius) var(--bk-radius) 0; }

/* Nummerierte Anleitungen / Funktionslisten */
.bodywebsite .bk-ol { counter-reset: bkol; list-style: none; margin: 22px 0; padding: 0; }
.bodywebsite .bk-ol li { counter-increment: bkol; position: relative; padding: 0 0 18px 52px; }
.bodywebsite .bk-ol li::before { content: counter(bkol); position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 50%; background: var(--bk-ink); color: #fff;
  border: 3px solid var(--bk-brand); font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; }
.bodywebsite .bk-ul { list-style: none; margin: 18px 0; padding: 0; }
.bodywebsite .bk-ul li { padding: 8px 0 8px 24px; position: relative;
  border-top: 1px solid var(--bk-mist); }
.bodywebsite .bk-ul li:first-child { border-top: 0; }
.bodywebsite .bk-ul li::before { content: ""; position: absolute; left: 0; top: 16px;
  width: 9px; height: 9px; background: var(--bk-brand); }

/* Ueber-Block (Home) + Bildergalerie (ueber-bloxera) */
.bodywebsite .bk-about__grid { display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center; }
.bodywebsite .bk-about__portrait { width: 180px; height: auto; border-radius: 50%;
  border: 3px solid var(--bk-brand); margin: 18px 0; display: block; }
.bodywebsite .bk-logoband img { height: 44px; width: auto; display: block; opacity: 0.85; }
.bodywebsite .bk-logoband a:hover img { opacity: 1; }
.bodywebsite .bk-logoband { margin-top: 18px; align-items: center; }
.bodywebsite .bk-about__img img { width: 100%; height: auto; border-radius: var(--bk-radius);
  border: 1px solid var(--bk-line); display: block; }
.bodywebsite .bk-about__img figcaption { font-size: 13px; color: var(--bk-slate); margin-top: 8px; }
.bodywebsite .bk-figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bodywebsite .bk-figures img { width: 100%; height: auto; border-radius: var(--bk-radius);
  border: 1px solid var(--bk-line); display: block; }
.bodywebsite .bk-figures figcaption { font-size: 13.5px; color: var(--bk-slate); margin-top: 8px; }

/* Fallstudie als Prosa (ohne Zitatzeile, entschieden Runde 5) */
.bodywebsite .bk-case--prose p { font-size: 17px; margin: 0; }

/* Footer */
.bodywebsite .bk-footer { padding: 48px 0 28px; font-size: 14.5px; }
.bodywebsite .bk-footer__grid { display: flex; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; }
.bodywebsite .bk-footer p { color: #b9c8d2; margin-top: 10px; max-width: 340px; }
.bodywebsite .bk-footer a { color: #dfe7ec; }
.bodywebsite .bk-footer a:hover { color: #fff; }
.bodywebsite .bk-footer__base { display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.14); margin-top: 34px;
  padding-top: 18px; color: #b9c8d2; }
.bodywebsite .bk-logoband-sec { padding: 44px 0; }
.bodywebsite .bk-more { margin-top: 26px; }
.bodywebsite .bk-modul__note { color: var(--bk-slate); font-size: 15px; }

/* ---------- LEGACY-LAYER fuer Bestandsseiten (altes CSS ersetzt) ---------- */
.bodywebsite .container { max-width: var(--bk-max); margin: 0 auto; padding: 0 24px; }
.bodywebsite .container h2, .bodywebsite .container h3 { margin-top: 30px; }
.bodywebsite .container figure { margin: 24px auto; }
.bodywebsite .container figure img { max-width: 100%; height: auto; display: block;
  margin: 0 auto; border-radius: var(--bk-radius); }
.bodywebsite .container ul, .bodywebsite .container ol { margin: 14px 0; }
.bodywebsite .container hr { border: 0; border-top: 1px solid var(--bk-line); margin: 20px auto; }
.bodywebsite .row { display: flex; flex-wrap: wrap; gap: 20px; }
.bodywebsite .post-boxed, .bodywebsite .blog-box { border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius); background: var(--bk-paper); padding: 20px; }
.bodywebsite .post-boxed-title { font-weight: 700; margin: 8px 0; }
.bodywebsite .list-inline { list-style: none; padding: 0; font-size: 13px;
  color: var(--bk-slate); text-transform: uppercase; letter-spacing: 0.04em; }
.bodywebsite .list-inline li { display: inline-block; margin-right: 14px; }
/* Sicherheitsnetz: uebersehene FontAwesome-Reste unsichtbar */
.bodywebsite i[class*="fa-"] { display: none; }
@media (max-width: 960px) {
  .bodywebsite .bk-about__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-figures { grid-template-columns: 1fr; }
  .bodywebsite .bk-footer__grid { flex-direction: column; }
}


/* ---------- v3: Hero-Split, Diagnose-Band, Sprechzimmer, Pubs, memcoop ---------- */
.bodywebsite .bk-hero__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
  align-items: center; }
.bodywebsite .bk-hero__badge img { max-width: 260px; width: 100%; height: auto; display: block;
  margin: 0 auto; }
.bodywebsite .bk-diagnose { text-align: left; }
.bodywebsite .bk-diagnose h2 { font-size: clamp(26px, 3.4vw, 38px); }
.bodywebsite .bk-diagnose__lead { color: #b9c8d2; max-width: 720px; margin-bottom: 34px; }
.bodywebsite .bk-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  border-top: 1px solid rgba(255,255,255,0.16); padding: 28px 0 34px; }
.bodywebsite .bk-trio b { display: block; font-size: 20px; color: var(--bk-brand);
  margin-bottom: 8px; letter-spacing: -0.01em; }
.bodywebsite .bk-trio span { font-size: 15px; color: #b9c8d2; line-height: 1.6; }
.bodywebsite .bk-about__grid { grid-template-columns: 340px 1fr; }
.bodywebsite .bk-about__portrait-fig img { width: 100%; height: auto; border-radius: var(--bk-radius);
  border: 1px solid var(--bk-line); display: block; }
.bodywebsite .bk-about__portrait-fig figcaption { font-size: 13.5px; color: var(--bk-slate);
  margin-top: 10px; }
.bodywebsite .bk-about__haus { margin-top: 44px; }
.bodywebsite .bk-about__haus img { width: 100%; height: auto; border-radius: var(--bk-radius);
  border: 1px solid var(--bk-line); display: block; }
.bodywebsite .bk-about__haus figcaption { font-size: 13.5px; color: var(--bk-slate); margin-top: 10px; }
.bodywebsite .bk-pubs { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 30px; }
.bodywebsite .bk-pub { display: grid; grid-template-columns: 150px 1fr; gap: 24px;
  border: 1px solid var(--bk-line); border-radius: var(--bk-radius); padding: 24px;
  align-items: center; background: var(--bk-paper); }
.bodywebsite .bk-pub img { width: 100%; height: auto; border-radius: 2px; display: block;
  box-shadow: 0 4px 14px rgba(16,34,46,0.16); }
.bodywebsite .bk-pub p { color: var(--bk-slate); font-size: 15px; margin: 8px 0 10px; }
.bodywebsite .bk-memcoop-sec { border-top: 1px solid var(--bk-line); }
.bodywebsite .bk-memcoop__intro { color: var(--bk-slate); max-width: 640px; margin-bottom: 26px; }
.bodywebsite .bk-memcoop { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
  align-items: stretch; }
.bodywebsite .bk-tile { display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bk-line); border-radius: var(--bk-radius); padding: 20px;
  background: var(--bk-paper); }
.bodywebsite .bk-tile img { max-height: 72px; max-width: 100%; width: auto; height: auto; }
.bodywebsite a.bk-tile:hover { border-color: var(--bk-brand); }
@media (max-width: 960px) {
  .bodywebsite .bk-hero__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-hero__badge img { max-width: 200px; margin: 0; }
  .bodywebsite .bk-trio { grid-template-columns: 1fr; gap: 20px; }
  .bodywebsite .bk-about__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-pubs { grid-template-columns: 1fr; }
  .bodywebsite .bk-memcoop { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- v3.1: Lis-Mechaniken ---------- */
.bodywebsite .bk-diagnose__quote { margin: 26px 0; padding-left: 22px;
  border-left: 4px solid var(--bk-brand); font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700; letter-spacing: -0.01em; color: #fff; line-height: 1.4; }
.bodywebsite .bk-about__quote { margin: 20px 0; padding-left: 18px;
  border-left: 4px solid var(--bk-brand); font-size: 18px; font-weight: 600;
  color: var(--bk-ink); line-height: 1.55; }
.bodywebsite .bk-pubs__intro { color: var(--bk-slate); max-width: 640px; }
.bodywebsite .bk-cta__micro { font-size: 13.5px; color: #b9c8d2; margin-top: 14px; }


/* ---------- v3.2: Indikation, Bild-Vollband, Divider, Browser-Rahmen ---------- */
.bodywebsite .bk-indikation { display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  margin-top: 30px; }
.bodywebsite .bk-indikation__col { background: var(--bk-paper); border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius); padding: 28px 30px; }
.bodywebsite .bk-indikation__col--ja { border-top: 4px solid var(--bk-brand); }
.bodywebsite .bk-indikation__col--nein { border-top: 4px solid var(--bk-slate); }
.bodywebsite .bk-indikation__col h3 { font-size: 18px; margin-bottom: 14px; }
.bodywebsite .bk-indikation__col ul { list-style: none; margin: 0; padding: 0; }
.bodywebsite .bk-indikation__col li { padding: 9px 0 9px 26px; position: relative;
  font-size: 15.5px; color: var(--bk-slate); border-top: 1px solid var(--bk-mist); }
.bodywebsite .bk-indikation__col li:first-child { border-top: 0; }
.bodywebsite .bk-indikation__col--ja li::before { content: ""; position: absolute; left: 0;
  top: 17px; width: 10px; height: 10px; background: var(--bk-brand); }
.bodywebsite .bk-indikation__col--nein li::before { content: ""; position: absolute; left: 0;
  top: 21px; width: 12px; height: 2px; background: var(--bk-slate); }
.bodywebsite .bk-indikation__note { margin-top: 16px; font-size: 14.5px; font-weight: 600;
  color: var(--bk-ink); }
.bodywebsite .bk-imageband { position: relative; margin: 0; }
.bodywebsite .bk-imageband img { display: block; width: 100%; height: clamp(260px, 44vw, 460px);
  object-fit: cover; }
.bodywebsite .bk-imageband__caption { position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(16,24,29,0.78)); padding: 60px 0 22px; }
.bodywebsite .bk-imageband__caption span { display: block; max-width: var(--bk-max);
  margin: 0 auto; padding: 0 24px; color: #fff; font-size: 15.5px; font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.bodywebsite .bk-divider { height: 46px; background:
    linear-gradient(var(--bk-grid-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--bk-grid-a) 1px, transparent 1px);
  background-size: 20px 20px; border-top: 1px solid var(--bk-line);
  border-bottom: 1px solid var(--bk-line); }
.bodywebsite .bk-browser { margin: 34px auto 0; max-width: 860px;
  border: 1px solid var(--bk-line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,34,46,0.14); background: var(--bk-paper); }
.bodywebsite .bk-browser__bar { display: flex; align-items: center; gap: 7px;
  background: var(--bk-mist); border-bottom: 1px solid var(--bk-line); padding: 10px 14px; }
.bodywebsite .bk-browser__bar i { width: 11px; height: 11px; border-radius: 50%;
  background: var(--bk-line); display: inline-block; }
.bodywebsite .bk-browser__bar span { margin-left: 12px; font-size: 12.5px;
  color: var(--bk-slate); background: var(--bk-paper); border: 1px solid var(--bk-line);
  border-radius: 99px; padding: 3px 14px; }
.bodywebsite .bk-browser img { display: block; width: 100%; height: auto; }
.bodywebsite .bk-browser figcaption { padding: 12px 16px; font-size: 13.5px;
  color: var(--bk-slate); border-top: 1px solid var(--bk-line); }
@media (max-width: 960px) {
  .bodywebsite .bk-indikation { grid-template-columns: 1fr; }
}


/* ==================================================================
   V4 · DESIGN-DIREKTION "TECHNISCHE ZEICHNUNG" (Agentur-Pass)
   Schrift: IBM Plex Sans / Plex Mono, self-hosted (OFL, DSGVO-sauber)
   ================================================================== */
@font-face { font-family: 'IBM Plex Sans'; font-weight: 400; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-Regular.woff2") format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-weight: 600; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-SemiBold.woff2") format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-weight: 700; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-Bold.woff2") format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-weight: 500; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexMono-Medium.woff2") format('woff2'); }

.bodywebsite { --bk-font: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
  --bk-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  --bk-radius: 2px; --bk-grid-a: rgba(1,186,198,0.14); --bk-grid-b: rgba(1,186,198,0.055);
  font-size: 17px; line-height: 1.7; }

/* Typo-Skala: grosse, enge Displays; ruhiger Text */
.bodywebsite h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.04;
  letter-spacing: -0.035em; font-weight: 700; }
.bodywebsite h2 { font-size: clamp(29px, 3.8vw, 44px); letter-spacing: -0.025em;
  line-height: 1.12; }
.bodywebsite .bk-hero__lead { font-size: 20px; line-height: 1.65; }
.bodywebsite .bk-section { padding: 96px 0; }
.bodywebsite .bk-hero__inner { padding: 88px 0 84px; }

/* Eyebrow = Zeichnungs-Annotation (Mono) */
.bodywebsite .bk-eyebrow { font-family: var(--bk-mono); font-weight: 500;
  font-size: 12.5px; letter-spacing: 0.16em; color: var(--bk-slate); }
.bodywebsite .bk-section--ink .bk-eyebrow { color: #9fb3bf; }

/* Buttons: rechtwinklig, praezise */
.bodywebsite .bk-btn { border-radius: 0; padding: 14px 28px; font-size: 15.5px; }
.bodywebsite .bk-btn--ghost { border-width: 1.5px; border-color: var(--bk-ink); }
.bodywebsite .bk-btn--ghost:hover { background: var(--bk-ink); color: #fff;
  border-color: var(--bk-ink); }
.bodywebsite .bk-hero--ink .bk-btn--ghost, .bodywebsite .bk-section--ink .bk-btn--ghost {
  border-color: #fff; color: #fff; }
.bodywebsite .bk-section--ink .bk-btn--ghost:hover { background: #fff; color: var(--bk-ink); }

/* Karten: Baustein-Marker statt Farbbalken, ruhige Rahmen */
.bodywebsite .bk-card { border-top: 1px solid var(--bk-line); border-radius: 0;
  position: relative; padding-top: 30px; }
.bodywebsite .bk-card::before { content: ""; position: absolute; top: -1px; left: 0;
  width: 34px; height: 3px; background: var(--bk-brand); }
.bodywebsite .bk-card:hover { border-color: var(--bk-ink); }

/* Zeichnungskopf (Signatur) */
.bodywebsite .bk-zk { border: 1.5px solid var(--bk-ink); background: var(--bk-paper);
  font-family: var(--bk-mono); position: relative; align-self: start; margin-top: 8px; }
.bodywebsite .bk-zk__row { display: grid; grid-template-columns: 128px 1fr;
  border-top: 1px solid var(--bk-line); }
.bodywebsite .bk-zk__row:first-child { border-top: 0; }
.bodywebsite .bk-zk__row span { padding: 10px 14px; font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--bk-slate); border-right: 1px solid var(--bk-line); }
.bodywebsite .bk-zk__row b { padding: 9px 14px; font-size: 13.5px; font-weight: 500; }
.bodywebsite .bk-zk__row a { color: var(--bk-brand-text); }
.bodywebsite .bk-zk__stamp { border-top: 1px solid var(--bk-line); padding: 16px;
  display: flex; justify-content: center; background: var(--bk-mist); }
.bodywebsite .bk-zk__stamp img { max-height: 92px; width: auto; }
.bodywebsite .bk-zk::before, .bodywebsite .bk-zk::after { content: ""; position: absolute;
  width: 14px; height: 14px; border: 1.5px solid var(--bk-ink); }
.bodywebsite .bk-zk::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.bodywebsite .bk-zk::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }

/* Masskette statt Deko-Divider */
.bodywebsite .bk-divider { height: auto; padding: 34px 0; border: 0; background: none;
  position: relative; }
.bodywebsite .bk-divider::before { content: ""; display: block; max-width: var(--bk-max);
  margin: 0 auto; border-top: 1.5px solid var(--bk-ink); position: relative; }
.bodywebsite .bk-divider::after { content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; background: var(--bk-brand);
  transform: translate(-50%, -50%) rotate(45deg); }

/* Bildunterschriften = Plan-Beschriftung */
.bodywebsite figcaption, .bodywebsite .bk-imageband__caption span {
  font-family: var(--bk-mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; }
.bodywebsite figcaption { font-size: 11.5px; color: var(--bk-slate); }
.bodywebsite .bk-imageband__caption span { font-size: 12px; font-weight: 500; }
.bodywebsite .bk-post time, .bodywebsite .bk-modul__meta dt,
.bodywebsite .bk-cta__micro, .bodywebsite .bk-tag { font-family: var(--bk-mono); }
.bodywebsite .bk-tag { border-radius: 0; letter-spacing: 0.06em; font-size: 11.5px; }

/* Dunkles Band: Nachtplan mit feinem Raster */
.bodywebsite .bk-section--ink { background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px; }

/* Praezisions-Details */
.bodywebsite .bk-badge__t { letter-spacing: -0.01em; }
.bodywebsite .bk-hero__grid { grid-template-columns: 1.35fr 0.95fr; gap: 64px;
  align-items: start; }
.bodywebsite .bk-indikation__col, .bodywebsite .bk-tile, .bodywebsite .bk-pub,
.bodywebsite .bk-modul, .bodywebsite .bk-case, .bodywebsite .bk-browser,
.bodywebsite .bk-price, .bodywebsite .bk-post { border-radius: 0; }
@media (max-width: 960px) {
  .bodywebsite .bk-zk { margin-top: 34px; }
  .bodywebsite .bk-section { padding: 64px 0; }
}


/* ==================================================================
   V5 · WEICHERE KANTEN + NEUE BLOECKE
   Radius folgt der Dolibarr-v23-Beleganmutung (abgerundete Ecken)
   ================================================================== */
.bodywebsite { --bk-radius: 10px; --bk-radius-sm: 6px; }

.bodywebsite .bk-btn { border-radius: 999px; }
.bodywebsite .bk-card, .bodywebsite .bk-indikation__col, .bodywebsite .bk-tile,
.bodywebsite .bk-pub, .bodywebsite .bk-modul, .bodywebsite .bk-case,
.bodywebsite .bk-browser, .bodywebsite .bk-post, .bodywebsite .bk-badge,
.bodywebsite .bk-case2, .bodywebsite .bk-shelf__col {
  border-radius: var(--bk-radius); }
.bodywebsite .bk-tag { border-radius: 999px; }
.bodywebsite figure img, .bodywebsite .bk-imageband img,
.bodywebsite .bk-about__portrait-fig img, .bodywebsite .bk-pub img {
  border-radius: var(--bk-radius-sm); }
.bodywebsite .bk-imageband { border-radius: var(--bk-radius); overflow: hidden; }
.bodywebsite .bk-browser { overflow: hidden; }

/* Karten: Marker als abgerundeter Strich */
.bodywebsite .bk-card { border: 1px solid var(--bk-line); padding: 32px 30px 30px; }
.bodywebsite .bk-card::before { top: 0; left: 30px; width: 38px; height: 4px;
  border-radius: 0 0 4px 4px; }

/* Zeichnungskopf: gerundet, ohne harte Eckmarken */
.bodywebsite .bk-zk { border-radius: var(--bk-radius); overflow: hidden;
  border-width: 1px; box-shadow: 0 8px 26px rgba(16,34,46,0.10); }
.bodywebsite .bk-zk::before, .bodywebsite .bk-zk::after { display: none; }

/* Vier Schritte im Prinzip-Band */
.bodywebsite .bk-quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  border-top: 1px solid rgba(255,255,255,0.16); padding: 30px 0 34px; }
.bodywebsite .bk-quad > div { position: relative; padding-top: 6px; }
.bodywebsite .bk-quad i { font-family: var(--bk-mono); font-style: normal; font-size: 12px;
  letter-spacing: 0.14em; color: var(--bk-brand); display: block; margin-bottom: 10px; }
.bodywebsite .bk-quad b { display: block; font-size: 19px; color: #fff; margin-bottom: 8px;
  letter-spacing: -0.01em; }
.bodywebsite .bk-quad span { font-size: 14.5px; color: #b9c8d2; line-height: 1.6; }

/* Zwei Regale */
.bodywebsite .bk-shelf { display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  margin-top: 30px; }
.bodywebsite .bk-shelf__col { border: 1px solid var(--bk-line); background: var(--bk-paper);
  padding: 30px; }
.bodywebsite .bk-shelf__col--house { background: var(--bk-mist); }
.bodywebsite .bk-shelf__label { font-family: var(--bk-mono); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bk-slate);
  margin-bottom: 10px; }
.bodywebsite .bk-shelf__col h3 { font-size: 22px; margin-bottom: 10px; }
.bodywebsite .bk-shelf__col p { color: var(--bk-slate); font-size: 15.5px; }
.bodywebsite .bk-modlist { list-style: none; margin: 18px 0 0; padding: 0; }
.bodywebsite .bk-modlist li { border-top: 1px solid var(--bk-mist); }
.bodywebsite .bk-modlist a { display: block; padding: 14px 0; color: inherit; }
.bodywebsite .bk-modlist b { display: block; font-size: 16px; }
.bodywebsite .bk-modlist span { font-size: 14px; color: var(--bk-slate); }
.bodywebsite .bk-modlist a:hover b { color: var(--bk-brand-text); }

/* Fallstudien */
.bodywebsite .bk-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: 30px; }
.bodywebsite .bk-case2 { border: 1px solid var(--bk-line); background: var(--bk-paper);
  padding: 28px 26px; }
.bodywebsite .bk-case2__tag { font-family: var(--bk-mono); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--bk-brand-text);
  margin-bottom: 12px; }
.bodywebsite .bk-case2 h3 { font-size: 18.5px; line-height: 1.3; margin-bottom: 10px; }
.bodywebsite .bk-case2 p { font-size: 15px; color: var(--bk-slate); }
.bodywebsite .bk-branchen { margin-top: 34px; border-top: 1px solid var(--bk-line);
  padding-top: 22px; }
.bodywebsite .bk-branchen__label { font-family: var(--bk-mono); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bk-slate); }
.bodywebsite .bk-branchen ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin: 14px 0 0; padding: 0; }
.bodywebsite .bk-branchen li { border: 1px solid var(--bk-line); border-radius: 999px;
  padding: 7px 16px; font-size: 14px; color: var(--bk-slate); background: var(--bk-paper); }

@media (max-width: 960px) {
  .bodywebsite .bk-quad { grid-template-columns: 1fr 1fr; }
  .bodywebsite .bk-shelf, .bodywebsite .bk-cases { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bodywebsite .bk-quad { grid-template-columns: 1fr; }
}


/* ==================================================================
   V6 · DIN-ECKE ALS SIGNATUR
   Rundung diagonal: links oben + rechts unten. Ergibt eine Form, die
   in jeder Groesse wiedererkennbar ist – von der Karte bis zum Button.
   ================================================================== */
.bodywebsite { --bk-din: 16px; --bk-din-sm: 10px; --bk-din-xs: 8px; }

/* Flaechen */
.bodywebsite .bk-card, .bodywebsite .bk-indikation__col, .bodywebsite .bk-tile,
.bodywebsite .bk-pub, .bodywebsite .bk-modul, .bodywebsite .bk-case,
.bodywebsite .bk-browser, .bodywebsite .bk-post, .bodywebsite .bk-badge,
.bodywebsite .bk-case2, .bodywebsite .bk-shelf__col, .bodywebsite .bk-zk,
.bodywebsite .bk-imageband {
  border-radius: var(--bk-din) 0 var(--bk-din) 0; }

/* Bilder */
.bodywebsite figure img, .bodywebsite .bk-about__portrait-fig img,
.bodywebsite .bk-pub img, .bodywebsite .bk-imageband img {
  border-radius: var(--bk-din-sm) 0 var(--bk-din-sm) 0; }
.bodywebsite .bk-imageband img { border-radius: 0; }
.bodywebsite .bk-browser img { border-radius: 0; }

/* Bedienelemente: eckig mit Radius, gleiche Handschrift wie die Flaechen */
.bodywebsite .bk-btn { border-radius: var(--bk-din-xs) 0 var(--bk-din-xs) 0; }
.bodywebsite .bk-tag, .bodywebsite .bk-branchen li {
  border-radius: var(--bk-din-xs) 0 var(--bk-din-xs) 0; }

/* Karten-Marker sitzt in der geraden Ecke oben rechts */
.bodywebsite .bk-card::before { left: auto; right: 0; width: 44px; height: 4px;
  border-radius: 0; }


/* ==================================================================
   V7 · DOSIS DER DIN-ECKE
   Diagonale Rundung nur auf den "Dokumenten" der Seite.
   Bedienelemente und Bilder: gleichmaessig gerundet.
   Signatur: gedoppelte, gerundete Winkelmarken am Zeichnungskopf.
   ================================================================== */

/* Bedienelemente wieder gleichmaessig */
.bodywebsite .bk-btn { border-radius: 8px; }
.bodywebsite .bk-tag, .bodywebsite .bk-branchen li { border-radius: 8px; }

/* Bilder gleichmaessig */
.bodywebsite figure img, .bodywebsite .bk-about__portrait-fig img,
.bodywebsite .bk-pub img { border-radius: 8px; }
.bodywebsite .bk-imageband { border-radius: 12px; overflow: hidden; }
.bodywebsite .bk-imageband img { border-radius: 0; }

/* Kein DIN-Schnitt auf Kleinteilen */
.bodywebsite .bk-post, .bodywebsite .bk-badge, .bodywebsite .bk-tile {
  border-radius: 10px; }

/* DIN-Schnitt bleibt: Karten, Regale, Faelle, Modulkarte, Indikation, Browser */
.bodywebsite .bk-card, .bodywebsite .bk-indikation__col, .bodywebsite .bk-pub,
.bodywebsite .bk-modul, .bodywebsite .bk-case, .bodywebsite .bk-case2,
.bodywebsite .bk-shelf__col, .bodywebsite .bk-browser {
  border-radius: var(--bk-din) 0 var(--bk-din) 0; }

/* Signatur: Zeichnungskopf gleichmaessig gerundet + gedoppelte Winkelmarken */
.bodywebsite .bk-zk { border-radius: 12px; overflow: visible; }
.bodywebsite .bk-zk::before, .bodywebsite .bk-zk::after { content: ""; display: block;
  position: absolute; width: 22px; height: 22px; border: 2px solid var(--bk-brand); }
.bodywebsite .bk-zk::before { top: -11px; left: -11px; border-right: 0; border-bottom: 0;
  border-top-left-radius: 12px; }
.bodywebsite .bk-zk::after { bottom: -11px; right: -11px; border-left: 0; border-top: 0;
  border-bottom-right-radius: 12px; }
.bodywebsite .bk-zk__stamp { border-radius: 0; }


/* ==================================================================
   V8 · HAUSSCHRIFT-LINIE
   Jost* (SIL Open Font License) als geometrische Grotesk in der
   Tradition von Futura/FunctionPro – self-hosted, subsettet auf Latin.
   Mono-Annotationen bleiben IBM Plex Mono.
   Diese Definition ist der neue Baukasten-Standard fuer alle drei Sites.
   ================================================================== */
@font-face { font-family: 'Jost'; font-weight: 400; font-style: normal; font-display: swap;
  src: url("/medias/image/bloxera.com/Jost-Regular.woff2") format('woff2'); }
@font-face { font-family: 'Jost'; font-weight: 600; font-style: normal; font-display: swap;
  src: url("/medias/image/bloxera.com/Jost-SemiBold.woff2") format('woff2'); }
@font-face { font-family: 'Jost'; font-weight: 700; font-style: normal; font-display: swap;
  src: url("/medias/image/bloxera.com/Jost-Bold.woff2") format('woff2'); }

.bodywebsite { --bk-font: 'Jost', 'Avenir Next', 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
  font-size: 17.5px; }

/* Jost ist geometrisch und laeuft weiter als Plex: Laufweite zurueckdrehen */
.bodywebsite h1 { letter-spacing: -0.018em; font-weight: 700; }
.bodywebsite h2 { letter-spacing: -0.012em; }
.bodywebsite h3 { letter-spacing: -0.008em; }
.bodywebsite .bk-btn { letter-spacing: 0.005em; font-weight: 600; }
.bodywebsite .bk-quad b, .bodywebsite .bk-badge__t { letter-spacing: 0; }


/* ==================================================================
   V9 · ROLLENVERTEILUNG DER SCHRIFTEN
   Jost*        – Marke: Ueberschriften, Zitate, Bedienelemente
   IBM Plex Sans – Arbeit: Fliesstext, Listen, Beschreibungen
   IBM Plex Mono – Beschriftung: Eyebrows, Captions, Meta, Zeichnungskopf
   Alle drei self-hosted unter SIL OFL 1.1 (Lizenztexte in medias/fonts/).
   ================================================================== */
@font-face { font-family: 'IBM Plex Sans'; font-weight: 400; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-Regular.woff2") format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-weight: 600; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-SemiBold.woff2") format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-weight: 700; font-display: swap;
  src: url("/medias/image/bloxera.com/IBMPlexSans-Bold.woff2") format('woff2'); }

.bodywebsite {
  --bk-font: 'IBM Plex Sans', 'Segoe UI', system-ui, Roboto, Arial, sans-serif;
  --bk-display: 'Jost', 'Avenir Next', 'Century Gothic', 'Segoe UI', system-ui, sans-serif;
  --bk-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  font-size: 17px; }

/* Marke: Jost */
.bodywebsite h1, .bodywebsite h2, .bodywebsite h3,
.bodywebsite .bk-logo-text, .bodywebsite .bk-btn,
.bodywebsite .bk-diagnose__quote, .bodywebsite .bk-about__quote,
.bodywebsite .bk-quad b, .bodywebsite .bk-trio b, .bodywebsite .bk-badge__t,
.bodywebsite .bk-hero__lead {
  font-family: var(--bk-display); }

/* Jost laeuft geometrisch: Laufweite und Gewichte nachziehen */
.bodywebsite h1 { font-weight: 700; letter-spacing: -0.02em; }
.bodywebsite h2 { font-weight: 700; letter-spacing: -0.015em; }
.bodywebsite h3 { font-weight: 600; letter-spacing: -0.008em; }
.bodywebsite .bk-hero__lead { font-weight: 400; font-size: 20.5px; line-height: 1.55;
  letter-spacing: -0.005em; color: var(--bk-slate); }
.bodywebsite .bk-btn { font-weight: 600; letter-spacing: 0.01em; }
.bodywebsite .bk-diagnose__quote, .bodywebsite .bk-about__quote { font-weight: 600; }
.bodywebsite .bk-quad b, .bodywebsite .bk-trio b { font-weight: 600; }

/* Arbeit: Plex Sans (Standard ueber --bk-font) – Lesegroessen ruhig halten */
.bodywebsite p, .bodywebsite li, .bodywebsite dd, .bodywebsite dt {
  font-family: var(--bk-font); }
.bodywebsite .bk-prose p { font-size: 16.5px; line-height: 1.75; }

/* Beschriftung: Plex Mono */
.bodywebsite .bk-eyebrow, .bodywebsite figcaption, .bodywebsite .bk-post time,
.bodywebsite .bk-modul__meta dt, .bodywebsite .bk-cta__micro, .bodywebsite .bk-tag,
.bodywebsite .bk-zk, .bodywebsite .bk-quad i, .bodywebsite .bk-shelf__label,
.bodywebsite .bk-case2__tag, .bodywebsite .bk-branchen__label,
.bodywebsite .bk-imageband__caption span {
  font-family: var(--bk-mono); }


/* ---------- v10: CTA-Abstand + einheitliche Footer-Links ---------- */
.bodywebsite .bk-cta .bk-btn { margin-bottom: 18px; }
.bodywebsite .bk-cta__micro { margin-top: 0; }
.bodywebsite .bk-diagnose .bk-btn { margin-top: 10px; }

/* Footer: alle Links in Textfarbe, Unterscheidung nur ueber Unterstrich */
.bodywebsite .bk-footer a { color: #dfe7ec; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.28); }
.bodywebsite .bk-footer a:hover { color: #fff; text-decoration-color: var(--bk-brand); }
.bodywebsite .bk-footer p { color: #dfe7ec; }


/* ---------- v11: Aktive Seite in der Navigation ---------- */
.bodywebsite .bk-nav a.bk-active, .bodywebsite .bk-burger__nav a.bk-active {
  color: var(--bk-brand-deep); font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--bk-brand); }
.bodywebsite .bk-nav a.bk-btn.bk-active, .bodywebsite .bk-burger__nav a.bk-btn.bk-active {
  background: var(--bk-brand-tint); border-color: var(--bk-brand);
  color: var(--bk-brand-deep); box-shadow: none; }


/* ---------- v12: Hero-Kasten ruhiger, Blog-Kategorien lesbar ---------- */
.bodywebsite .bk-hero__grid { grid-template-columns: 1.55fr 0.85fr; gap: 78px; }
.bodywebsite .bk-zk { background: var(--bk-mist); border-color: var(--bk-line);
  box-shadow: none; margin-top: 18px; }
.bodywebsite .bk-zk__row span { color: var(--bk-slate); }
.bodywebsite .bk-zk__stamp { background: transparent; padding: 20px 16px; }
.bodywebsite .bk-zk__stamp img { max-height: 66px; }
.bodywebsite .bk-zk::before, .bodywebsite .bk-zk::after { border-color: var(--bk-line); }

/* Bestands-Blog: Themen-Kaestchen waren 12px – zu klein */
.bodywebsite .blog-category { font-size: 14px; padding: 8px 16px; letter-spacing: 0.04em;
  background: var(--bk-brand-deep); border-radius: 8px 0 8px 0; margin-right: 10px;
  font-family: var(--bk-mono); text-transform: none; }


/* ---------- v13: Logo-Kacheln mit Text, Sprungmarken-Wegweiser ---------- */
.bodywebsite .bk-memcoop { grid-template-columns: repeat(4, 1fr); }
.bodywebsite .bk-tile { flex-direction: column; gap: 14px; padding: 26px 18px;
  text-align: center; }
.bodywebsite .bk-tile img { max-height: 62px; }
.bodywebsite .bk-tile span { font-size: 13.5px; line-height: 1.45; color: var(--bk-slate); }
.bodywebsite a.bk-tile:hover span { color: var(--bk-ink); }

.bodywebsite .bk-jump { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 34px; border-top: 1px solid var(--bk-line); padding-top: 26px; }
.bodywebsite .bk-jump__label { grid-column: 1 / -1; font-family: var(--bk-mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bk-slate); }
.bodywebsite .bk-jump a { display: block; border: 1px solid var(--bk-line);
  background: var(--bk-paper); border-radius: var(--bk-din) 0 var(--bk-din) 0;
  padding: 20px 22px; color: inherit; position: relative; }
.bodywebsite .bk-jump a:hover { border-color: var(--bk-brand); }
.bodywebsite .bk-jump b { display: block; font-family: var(--bk-display); font-size: 18px;
  margin-bottom: 5px; }
.bodywebsite .bk-jump span { font-size: 14.5px; color: var(--bk-slate); }
.bodywebsite .bk-jump a::after { content: "↓"; position: absolute; right: 20px; top: 20px;
  color: var(--bk-brand); font-size: 18px; }
@media (max-width: 960px) {
  .bodywebsite .bk-memcoop { grid-template-columns: repeat(2, 1fr); }
  .bodywebsite .bk-jump { grid-template-columns: 1fr; }
}


/* ---------- v14: Bildband auf Textbreite, Kopf ruhiger, Blog-Filter lesbar ---------- */
/* Haus nicht mehr randlos, sondern auf Spaltenbreite und mit ruhigem Ausschnitt */
.bodywebsite .bk-imageband { max-width: var(--bk-max); margin: 0 auto; padding: 0 24px;
  border-radius: 0; overflow: visible; }
.bodywebsite .bk-imageband img { height: auto; aspect-ratio: 16 / 8;
  border-radius: var(--bk-din) 0 var(--bk-din) 0; }
.bodywebsite .bk-imageband__caption { left: 24px; right: 24px; padding: 48px 0 16px; }
.bodywebsite .bk-imageband__caption span { padding: 0 20px; }

/* Zeichnungskopf: rechtsbuendig, schmaler, kleineres Signet, weniger Kontrast */
.bodywebsite .bk-zk { max-width: 320px; justify-self: end; margin-top: 6px;
  background: var(--bk-paper); }
.bodywebsite .bk-zk__stamp { border-top: 0; border-bottom: 1px solid var(--bk-line);
  padding: 18px 16px 14px; }
.bodywebsite .bk-zk__stamp img { max-height: 46px; }
.bodywebsite .bk-zk__row { grid-template-columns: 108px 1fr; }
.bodywebsite .bk-zk__row span { padding: 9px 12px; font-size: 9.5px; }
.bodywebsite .bk-zk__row b { padding: 8px 12px; font-size: 12.5px; line-height: 1.35; }
.bodywebsite .bk-hero__grid { grid-template-columns: 1fr 320px; gap: 60px; }

/* Bestands-Blog: Themenauswahl – Schlagwort-Buttons waren 8px */
.bodywebsite .keyword-btn { font-size: 13px; padding: 6px 13px; letter-spacing: 0.02em;
  text-transform: none; border-radius: 8px 0 8px 0; font-family: var(--bk-mono); }
.bodywebsite .vip-keywords, .bodywebsite .regular-keywords { gap: 8px; }
.bodywebsite .filter-title { font-family: var(--bk-display); font-size: 18px; }
.bodywebsite .control-btn, .bodywebsite .filter-toggle { font-size: 13px; }
@media (max-width: 960px) {
  .bodywebsite .bk-hero__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-zk { justify-self: start; }
}


/* ---------- v15: Modulzeilen, Plattform-Band ---------- */
.bodywebsite .bk-modrows { margin-top: 28px; border-top: 1px solid var(--bk-line); }
.bodywebsite .bk-modrow { display: grid; grid-template-columns: 1fr 230px; gap: 34px;
  padding: 28px 0; border-bottom: 1px solid var(--bk-line); align-items: start; }
.bodywebsite .bk-modrow h3 { font-size: 21px; margin-bottom: 10px; }
.bodywebsite .bk-modrow__tags { margin-bottom: 12px; }
.bodywebsite .bk-modrow p { color: var(--bk-slate); font-size: 15.5px; max-width: 62ch; }
.bodywebsite .bk-modrow__links { display: flex; flex-direction: column; gap: 10px;
  padding-top: 4px; }
.bodywebsite .bk-plattform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 26px; }
.bodywebsite .bk-plattform h3 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.bodywebsite .bk-plattform p { color: #b9c8d2; margin-bottom: 18px; max-width: 46ch; }
.bodywebsite .bk-plattform .bk-btn { margin-right: 14px; }
.bodywebsite .bk-plattform .bk-card__link { color: #dfe7ec; }
@media (max-width: 960px) {
  .bodywebsite .bk-modrow { grid-template-columns: 1fr; gap: 14px; }
  .bodywebsite .bk-plattform__grid { grid-template-columns: 1fr; }
}


/* ---------- v16: Hover-Token + Bestands-Blog auf Markenfarben ---------- */
.bodywebsite { --bk-brand-hover: #015a63; }
/* Kaestchen der Themenauswahl und Kategorien: gefuellt in Textstaerke, weisse Schrift */
.bodywebsite .keyword-btn.active, .bodywebsite .keyword-btn:hover,
.bodywebsite .blog-category, .bodywebsite .blog-category-badge {
  background: var(--bk-brand-text); color: #fff; }
.bodywebsite .keyword-btn { background: var(--bk-mist); color: var(--bk-slate);
  border: 1px solid var(--bk-line); }
.bodywebsite .blog-article-body h2, .bodywebsite .blog-article-body h3 {
  color: var(--bk-ink); }
.bodywebsite .blog-article-body a, .bodywebsite .blog-readmore,
.bodywebsite .filter-toggle, .bodywebsite .blog-back-link { color: var(--bk-brand-text); }


/* ---------- v17: Geraetebild, Modul-Cover, Kundenzugang-Bereiche ---------- */
.bodywebsite .bk-devices { margin: 30px auto 0; max-width: 900px; }
.bodywebsite .bk-devices img { width: 100%; height: auto; display: block;
  border-radius: var(--bk-din) 0 var(--bk-din) 0; }
.bodywebsite .bk-devices figcaption { margin-top: 10px; text-align: center; }
.bodywebsite .bk-modrow__cover { display: block; width: 108px; height: auto; margin-top: 6px;
  border: 1px solid var(--bk-line); border-radius: 6px 0 6px 0; }
.bodywebsite .bk-modrow__links { align-items: flex-start; }
/* Anleitungen als dunkler Block: Portale und Anleitungen auf einen Blick trennbar */
.bodywebsite .bk-anleitungen .bk-jump { border-top-color: rgba(255,255,255,0.18); }
.bodywebsite .bk-anleitungen .bk-jump__label { color: #9fb3bf; }
.bodywebsite .bk-anleitungen .bk-jump a { background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2); color: #fff; }
.bodywebsite .bk-anleitungen .bk-jump a:hover { border-color: var(--bk-brand); }
.bodywebsite .bk-anleitungen .bk-jump span { color: #b9c8d2; }


/* ---------- v18: Dreispaltiges Regal (Schulung/Coaching/Support) ---------- */
.bodywebsite .bk-shelf { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.bodywebsite .bk-devices img { background: transparent; }


/* ---------- v19: Ratgeber-Hinweis unter der Indikation ---------- */
.bodywebsite .bk-indikation__more { margin-top: 26px; text-align: center;
  color: var(--bk-slate); font-size: 16px; }
.bodywebsite .bk-indikation__more .bk-card__link { margin-left: 8px; }


/* ==================================================================
   V20 · HERO-KORREKTUREN
   Kontrast, Spaltenbreite, Eckmarken, Rasterdeckkraft
   ================================================================== */

/* 1. Primaerbutton: weisse Schrift auf --bk-brand ergab nur 2,4:1.
      Fuellung auf --bk-brand-text (5,6:1) – entspricht der eigenen Regel. */
.bodywebsite .bk-btn--primary { background: var(--bk-brand-text); color: #fff; }
.bodywebsite .bk-btn--primary:hover { background: var(--bk-brand-hover); filter: none; }

/* 2. Textspalte breiter, Ueberschrift ruhiger umbrechen */
.bodywebsite .bk-hero__grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; }
.bodywebsite .bk-hero h1 { font-size: clamp(34px, 4.4vw, 56px); text-wrap: balance;
  max-width: 15ch; }
.bodywebsite .bk-hero__lead { max-width: 46ch; }
.bodywebsite .bk-hero__cta { flex-wrap: nowrap; }
@media (max-width: 1100px) {
  .bodywebsite .bk-hero__grid { grid-template-columns: minmax(0, 1fr) 270px; gap: 36px; }
}
@media (max-width: 860px) {
  .bodywebsite .bk-hero__grid { grid-template-columns: 1fr; }
  .bodywebsite .bk-hero h1 { max-width: none; }
  .bodywebsite .bk-hero__cta { flex-wrap: wrap; }
}

/* 3. Eckmarken entfernt – wirkten wie ein verrutschter zweiter Kasten */
.bodywebsite .bk-zk::before, .bodywebsite .bk-zk::after { display: none; }

/* 4. Blueprint-Raster leiser und nach unten auslaufend */
.bodywebsite { --bk-grid-a: rgba(1,186,198,0.055); --bk-grid-b: rgba(1,186,198,0.028); }
.bodywebsite .bk-hero { -webkit-mask-image: linear-gradient(#000 55%, rgba(0,0,0,0.25) 100%);
  mask-image: linear-gradient(#000 55%, rgba(0,0,0,0.25) 100%); }


/* ==================================================================
   V21 · KORREKTUR ZU V20
   Die Maske auf .bk-hero blendete den gesamten Inhalt aus (Buttons,
   Lead). Das Ausblenden des Rasters gehoert auf eine eigene Ebene.
   ================================================================== */
.bodywebsite .bk-hero { -webkit-mask-image: none; mask-image: none; }
.bodywebsite .bk-hero::after { content: ""; position: absolute; left: 0; right: 0;
  bottom: 0; height: 55%; pointer-events: none; z-index: 0;
  background: linear-gradient(rgba(255,255,255,0), var(--bk-paper)); }
.bodywebsite .bk-hero > .bk-wrap { position: relative; z-index: 1; }

/* Buttons duerfen nicht umbrechen */
.bodywebsite .bk-btn { white-space: nowrap; }
.bodywebsite .bk-hero__cta { gap: 12px; }

/* Ueberschrift: drei Zeilen statt fuenf */
.bodywebsite .bk-hero h1 { max-width: 22ch; font-size: clamp(34px, 4.2vw, 52px); }


/* ==================================================================
   V22 · HERO EINSPALTIG, STECKBRIEF ALS LEISTE
   Nutzen zuerst: der Hero traegt nur Eyebrow, H1, Lead und Aktionen.
   Der Anbieter-Steckbrief sitzt als waagerechte Leiste unter den Badges.
   ================================================================== */
.bodywebsite .bk-hero__inner { max-width: var(--bk-max); }
.bodywebsite .bk-hero h1 { max-width: 20ch; font-size: clamp(36px, 5vw, 62px);
  text-wrap: balance; }
.bodywebsite .bk-hero__lead { max-width: 58ch; }

/* Steckbrief-Leiste */
.bodywebsite .bk-steckbrief { padding: 0 0 8px; }
.bodywebsite .bk-zk--band { max-width: none; justify-self: stretch; margin: 0;
  display: grid; grid-template-columns: 132px repeat(4, 1fr); align-items: stretch;
  border: 1px solid var(--bk-line); border-radius: var(--bk-din) 0 var(--bk-din) 0;
  background: var(--bk-paper); overflow: hidden; }
.bodywebsite .bk-zk--band .bk-zk__stamp { border-bottom: 0;
  border-right: 1px solid var(--bk-line); display: flex; align-items: center;
  justify-content: center; padding: 14px; background: var(--bk-mist); }
.bodywebsite .bk-zk--band .bk-zk__stamp img { max-height: 42px; }
.bodywebsite .bk-zk--band .bk-zk__row { display: block; border-top: 0;
  border-left: 1px solid var(--bk-line); padding: 12px 16px; }
.bodywebsite .bk-zk--band .bk-zk__row:first-of-type { border-left: 0; }
.bodywebsite .bk-zk--band .bk-zk__row span { display: block; padding: 0 0 4px;
  border-right: 0; font-size: 9.5px; }
.bodywebsite .bk-zk--band .bk-zk__row b { display: block; padding: 0; font-size: 12.5px;
  line-height: 1.35; }
@media (max-width: 900px) {
  .bodywebsite .bk-zk--band { grid-template-columns: 1fr 1fr; }
  .bodywebsite .bk-zk--band .bk-zk__stamp { grid-column: 1 / -1;
    border-right: 0; border-bottom: 1px solid var(--bk-line); }
  .bodywebsite .bk-zk--band .bk-zk__row { border-top: 1px solid var(--bk-line); }
}


/* ==================================================================
   V23 · HAUSFARBE AUF GEFUELLTEN FLAECHEN (Variante A)
   #01bac6 bleibt unveraendert, die Schrift darauf wird dunkel.
   Weiss auf #01bac6 = 2,38:1 (unzulaessig), Anthrazit = 5,37:1 (AA).
   Gilt fuer Primaerbutton, Themen-Chips und Kategorie-Kacheln.
   ================================================================== */
.bodywebsite { --bk-on-brand: #10262b; }

.bodywebsite .bk-btn--primary { background: var(--bk-brand); color: var(--bk-on-brand); }
.bodywebsite .bk-btn--primary:hover { background: var(--bk-brand-deep);
  color: var(--bk-on-brand); filter: none; }

.bodywebsite .keyword-btn.active, .bodywebsite .keyword-btn:hover,
.bodywebsite .blog-category, .bodywebsite .blog-category-badge {
  background: var(--bk-brand); color: var(--bk-on-brand); }

/* Auf dunklem Grund bleibt der Primaerbutton hell gefuellt: dort steht
   die Hausfarbe ohnehin kontrastreich gegen den Anthrazit-Hintergrund. */
.bodywebsite .bk-section--ink .bk-btn--primary { background: var(--bk-brand);
  color: var(--bk-on-brand); }


/* ---------- v24: Hover bei dunkler Schrift aufhellen statt abdunkeln ---------- */
.bodywebsite { --bk-brand-lift: #2ed3dd; }
.bodywebsite .bk-btn--primary:hover, .bodywebsite .bk-section--ink .bk-btn--primary:hover {
  background: var(--bk-brand-lift); color: var(--bk-on-brand); }
.bodywebsite .keyword-btn:hover { background: var(--bk-brand-lift); color: var(--bk-on-brand); }


/* ---------- v25: Badge-Zeile mit Partnersignet und Label ---------- */
.bodywebsite .bk-badges { padding: 30px 0 34px; }
.bodywebsite .bk-badges .bk-eyebrow { margin-bottom: 16px; }
.bodywebsite .bk-badges__row { display: grid; grid-template-columns: 132px 1fr;
  gap: 30px; align-items: center; }
.bodywebsite .bk-badges__logo img { max-width: 118px; height: auto; display: block; }
.bodywebsite .bk-badges__grid { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 26px; }
@media (max-width: 900px) {
  .bodywebsite .bk-badges__row { grid-template-columns: 1fr; gap: 18px; }
  .bodywebsite .bk-badges__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}


/* ==================================================================
   V26 · Logo in Spaltenbreite, Treppe, ruhiges Raster auf Unterseiten
   ================================================================== */
/* Partnersignet exakt so breit wie die erste Badge-Spalte, direkt darueber */
.bodywebsite .bk-badges__logo { display: block; width: calc((100% - 3 * 26px) / 4);
  margin-bottom: 18px; }
.bodywebsite .bk-badges__logo img { width: 100%; max-width: 150px; height: auto;
  display: block; }

/* Ablauf als aufsteigende Treppe (Leistungsseite) */
.bodywebsite .bk-stairs { list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: end; }
.bodywebsite .bk-stairs li { position: relative; padding: 22px 20px 20px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--bk-din) 0 var(--bk-din) 0;
  background: rgba(255,255,255,0.04); }
.bodywebsite .bk-stairs li:nth-child(1) { margin-bottom: 0; }
.bodywebsite .bk-stairs li:nth-child(2) { margin-bottom: 22px; }
.bodywebsite .bk-stairs li:nth-child(3) { margin-bottom: 44px; }
.bodywebsite .bk-stairs li:nth-child(4) { margin-bottom: 66px; }
.bodywebsite .bk-stairs li:nth-child(5) { margin-bottom: 88px;
  border-color: var(--bk-brand); }
.bodywebsite .bk-stairs i { font-family: var(--bk-mono); font-style: normal;
  font-size: 12px; letter-spacing: 0.14em; color: var(--bk-brand); display: block;
  margin-bottom: 10px; }
.bodywebsite .bk-stairs b { display: block; font-family: var(--bk-display); font-size: 18px;
  color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.bodywebsite .bk-stairs span { font-size: 14px; color: #b9c8d2; line-height: 1.55; }
@media (max-width: 1000px) {
  .bodywebsite .bk-stairs { grid-template-columns: 1fr 1fr; }
  .bodywebsite .bk-stairs li { margin-bottom: 0 !important; }
}

/* Schlanke Buehnen (Blog, Unterseiten): Raster noch dezenter */
.bodywebsite .bk-hero--slim { background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px; }
.bodywebsite .bk-hero--slim::after { height: 100%; }

/* Ueber-Seite: einzelnes Portraet mittig, nicht ueber die volle Breite */
.bodywebsite .bk-figures--single { grid-template-columns: minmax(0, 420px); }


/* ---------- v27: Porträt mit Zitat auf der Über-Seite ---------- */
.bodywebsite .bk-portraet { display: grid; grid-template-columns: 340px 1fr; gap: 40px;
  align-items: center; }
.bodywebsite .bk-portraet figure { margin: 0; }
.bodywebsite .bk-portraet img { width: 100%; height: auto; display: block;
  border-radius: 8px; border: 1px solid var(--bk-line); }
.bodywebsite .bk-portraet figcaption { font-family: var(--bk-mono); font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bk-slate); margin-top: 10px; }
.bodywebsite .bk-portraet .bk-about__quote { font-size: clamp(20px, 2.4vw, 26px);
  margin: 0; }
@media (max-width: 860px) { .bodywebsite .bk-portraet { grid-template-columns: 1fr; } }


/* ---------- v28: Restklassen ---------- */
.bodywebsite .bk-shelf__more { margin-top: 16px; }
.bodywebsite .bk-about__text { min-width: 0; }


/* ==================================================================
   V29 · BLOG-ARTIKELKOPF UND PORTRAETGROESSE
   Der Artikelkopf bringt sein eigenes Raster mit (4px-Gitter im
   Seiten-CSS des Bestands). Hier auf die Startseiten-Dezenz gebracht.
   ================================================================== */
.bodywebsite .blog-article-header {
  background:
    linear-gradient(var(--bk-grid-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--bk-grid-a) 1px, transparent 1px),
    linear-gradient(var(--bk-grid-b) 1px, transparent 1px),
    linear-gradient(90deg, var(--bk-grid-b) 1px, transparent 1px),
    var(--bk-mist);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
  color: var(--bk-ink); }
.bodywebsite .blog-article-meta { background: transparent; border-color: var(--bk-line); }

/* Portraet deutlich kleiner */
.bodywebsite .bk-portraet { grid-template-columns: 260px 1fr; gap: 36px; }
.bodywebsite .bk-portraet img { max-width: 260px; }
.bodywebsite .bk-figures img { max-width: 100%; }
@media (max-width: 860px) {
  .bodywebsite .bk-portraet { grid-template-columns: 1fr; }
  .bodywebsite .bk-portraet img { max-width: 220px; }
}


/* ==================================================================
   V30 · TREPPE RICHTIG STUFEN
   Vorher: Versatz ueber margin-bottom bei unterschiedlich hohen
   Kaesten – nur die Unterkanten stuften, die Oberkanten zackten.
   Jetzt: alle Kaesten gleich hoch (Grid streckt), Versatz ueber
   translateY. Damit stufen Ober- UND Unterkante gleichmaessig.
   ================================================================== */
.bodywebsite .bk-stairs { align-items: stretch; margin-bottom: 92px; }
.bodywebsite .bk-stairs li { margin-bottom: 0; display: flex; flex-direction: column; }
.bodywebsite .bk-stairs li:nth-child(1) { transform: translateY(92px); }
.bodywebsite .bk-stairs li:nth-child(2) { transform: translateY(69px); }
.bodywebsite .bk-stairs li:nth-child(3) { transform: translateY(46px); }
.bodywebsite .bk-stairs li:nth-child(4) { transform: translateY(23px); }
.bodywebsite .bk-stairs li:nth-child(5) { transform: translateY(0); }
@media (max-width: 1000px) {
  .bodywebsite .bk-stairs { margin-bottom: 0; }
  .bodywebsite .bk-stairs li { transform: none !important; }
}


/* ---------- v31: Hervorhebung im Fliesstext (kein eigener Block) ---------- */
.bodywebsite .bk-inlinequote { margin: 26px 0; padding-left: 20px;
  border-left: 4px solid var(--bk-brand); font-family: var(--bk-display);
  font-size: clamp(19px, 2.2vw, 24px); font-weight: 600; line-height: 1.4;
  letter-spacing: -0.01em; color: var(--bk-ink); }


/* ==================================================================
   V32 · RASTER ETWAS SICHTBARER, SIGNET BUENDIG ZU DEN BADGES
   Die Badges haben 24px Innenabstand; das Signet stand dagegen an
   der Wrap-Kante und wirkte dadurch nach links versetzt.
   ================================================================== */
.bodywebsite { --bk-grid-a: rgba(1,186,198,0.085); --bk-grid-b: rgba(1,186,198,0.045); }
.bodywebsite .bk-badges__logo { padding-left: 24px; }
@media (max-width: 900px) { .bodywebsite .bk-badges__logo { padding-left: 0; } }


/* ==================================================================
   V33 · UEBERNAHME AUS v0.6.1 (doligov-Zweig)
   Der Hero-Fade aus V21 legt einen Verlauf nach --bk-paper ueber die
   unteren 55% jedes Heros. Auf dunklen Buehnen ergab das einen weissen
   Schleier. Muster: wo eine Regel .bk-section--ink adressiert, pruefen,
   ob .bk-hero--ink mitgemeint sein muss.
   ================================================================== */
.bodywebsite .bk-hero--ink::after { content: none; }
.bodywebsite .bk-hero--ink .bk-btn--ghost:hover {
  background: #fff; color: var(--bk-ink); border-color: #fff; }

