/* =========================================================
   2026 Webstandard – gutachter-fitzner.de (shared)
   - Mobile-first, responsive Grid/Flex
   - Sticky Header, accessible focus states
   ========================================================= */

:root{
  --bg:#ffffff;
  --surface:#f9f9f9;
  --text:#1f2933;
  --muted:#556370;

  --brand:#002d55;
  --brand-2:#001a3e;

  --header-bg:#f4f4f4;
  --border:#e6e8eb;

  --link:#0b63ce;
  --link-hover:#084c9c;

  --footer-bg:var(--brand);
  --footer-text:#d9d9d9;
  --footer-link:#8cc7ff;

  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.08);

  --container:1120px;

  --s1:6px; --s2:10px; --s3:14px; --s4:18px; --s5:24px; --s6:32px; --s7:44px; --s8:64px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{ max-width:100%; height:auto; display:block; }
.container{
  width:min(100%, calc(var(--container) + 2*var(--s5)));
  margin:0 auto;
  padding:0 var(--s5);
}
a{ color:var(--link); text-decoration:none; }
a:hover{ color:var(--link-hover); text-decoration:underline; }

:focus-visible{ outline:3px solid rgba(11,99,206,.45); outline-offset:2px; }

/* Sticky Header */
.header-container{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--header-bg);
  border-bottom:1px solid var(--border);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  overflow:visible !important;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--s4);
  padding:var(--s4) 0;
  overflow:visible !important;
}
.brandblock h1{
  margin:0;
  font-size:24px;
  line-height:1.15;
  color:#2b2b2b;
}
.brandblock p{
  margin:var(--s1) 0 0 0;
  color:var(--muted);
  font-size:15px;
}

/* =========================================
   Navigation + Dropdown-Menü
   ========================================= */

.nav-links{
  display:flex;
  gap:var(--s2);
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
  overflow:visible !important;
}

.nav-links > a,
.dropdown > a{
  display:flex;
  align-items:center;
  padding:10px 14px;
  border-radius:10px;
  color:#2b2b2b;
  text-decoration:none;
  transition:background .15s ease, transform .05s ease;
}

.nav-links > a:hover,
.dropdown > a:hover{
  background:rgba(0,0,0,.08);
  text-decoration:none;
}

.nav-links > a:active,
.dropdown > a:active{
  transform:translateY(1px);
}

.dropdown{
  position:relative;
  display:flex;
  align-items:center;
  vertical-align:middle;
  overflow:visible !important;
}

.dropdown > a{
  cursor:pointer;
  gap:6px;
  white-space:nowrap;
}

/* Menü: bewusst weiter nach links gezogen */
.dropdown-content{
  display:none;
  position:absolute;
  top:100%;
  right:0;
  transform:translateX(-0px);   /* weiter nach links */
  width:430px;
  max-height:300px;               /* kleiner => Scrollen greift sicher */
  overflow-y:auto;
  overflow-x:hidden;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
  padding:4px 0;
  z-index:9999;
}

/* Menüeinträge kompakter */
.dropdown-content a{
  display:block;
  padding:5px 18px;
  font-size:15px;
  line-height:1.2;
  color:#222;
  text-decoration:none;
  white-space:nowrap;
}

.dropdown-content a:hover{
  background:#f3f4f6;
  text-decoration:none;
}

.dropdown:hover .dropdown-content{
  display:block;
}

/* Scrollbar sichtbar gestalten */
.dropdown-content::-webkit-scrollbar{
  width:12px;
}

.dropdown-content::-webkit-scrollbar-track{
  background:#f1f1f1;
  border-radius:12px;
}

.dropdown-content::-webkit-scrollbar-thumb{
  background:#c8c8c8;
  border-radius:12px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover{
  background:#a8a8a8;
}

/* Mobile */
@media (max-width:860px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links{
    width:100%;
    justify-content:flex-start;
  }

  .dropdown-content{
    right:auto;
    left:0;
    transform:none;
    width:min(430px, calc(100vw - 48px));
    max-height:260px;
  }
}

/* Hero */
.hero{ padding:var(--s6) 0 var(--s6) 0; }
.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.hero-title{
  margin:var(--s5) 0 0 0;
  font-size:clamp(22px, 2.1vw, 30px);
  color:var(--brand);
  letter-spacing:.2px;
}
.hero-sub{
  margin:var(--s3) 0 0 0;
  color:var(--muted);
  font-size:18px;
}

/* Main */
.main{ padding:0 0 var(--s8) 0; }
.grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:var(--s6);
  align-items:start;
  margin-top:var(--s6);
}
@media (max-width:980px){
  .grid{ grid-template-columns:1fr; }
}

/* Cards */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  padding:var(--s5);
}
.card h2{
  margin:0 0 var(--s3) 0;
  font-size:18px;
  color:var(--brand);
}
.card p{ margin:0 0 var(--s2) 0; color:var(--text); }
.card .muted{ color:var(--muted); font-size:14px; }

.portrait, .cert{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.portrait{ margin-bottom:var(--s4); }
.cert{ margin-top:var(--s4); }
.caption{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}

/* Text */
.lead{
  font-size:18px;
  line-height:1.65;
  margin:0 0 var(--s5) 0;
}
.section-title{
  margin:var(--s7) 0 var(--s3) 0;
  font-size:22px;
  font-weight:800;
  color:var(--brand);
  padding-bottom:var(--s2);
  border-bottom:2px solid var(--brand);
}
.text{ margin:0 0 var(--s3) 0; color:var(--text); }

/* Checklist */
.checklist{
  display:grid;
  gap:var(--s2);
  margin:var(--s4) 0 0 0;
  padding:0;
  list-style:none;
}
.checklist li{
  position:relative;
  padding-left:28px;
  color:var(--text);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--brand);
  font-weight:800;
}

/* Footer */
.footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:var(--s7) 0;
  border-top:2px solid var(--footer-bg);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .7fr 1.2fr;
  gap:var(--s6);
  align-items:start;
}
@media (max-width:980px){
  .footer-grid{ grid-template-columns:1fr; }
}
.footer h2{ margin:0 0 var(--s3) 0; font-size:18px; color:var(--footer-text); }
.footer p, .footer ul{ margin:0 0 var(--s2) 0; font-size:14px; }
.footer a{ color:var(--footer-link); }
.footer a:hover{ text-decoration:underline; }

.article-list{ list-style:none; padding:0; margin:0; }
.article-list li{ margin-bottom:var(--s2); }

.footer-bottom{
  margin-top:var(--s6);
  padding-top:var(--s4);
  border-top:1px solid rgba(255,255,255,.18);
  font-size:13px;
  color:rgba(217,217,217,.92);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .nav-links a,
  .dropdown > a{ transition:none; }
}

/* =========================================================
   Artikel-Textdarstellung (1:1 aus dem Originalartikel)
   Gilt für Artikel-Seiten: <body class="article-page">
   ========================================================= */

.article-page .article-header {
  background-color: #002d55;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.article-page .text-left {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.article-page .section-heading {
  font-size: 22px;
  font-weight: bold;
  color: #002d55;
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: 2px solid #002d55;
}

.article-page .section-paragraph {
  font-size: 16px;
  color: #293133;
  margin-top: 20px;
}

.article-page .section-paragraph-v3 {
  font-size: 12px;
  color: #293133;
  margin-top: 20px;
}

.article-page .section-p {
  font-size: 16px;
  color: #293133;
  margin-top: 40px;
  line-height: 1.6;
  padding-right: 120px;
}

@media (max-width: 980px){
  .article-page .section-p{ padding-right: 0; }
}

/* =========================================
   ARTIKEL-DARSTELLUNG
   ========================================= */

.article-header h2{
  margin:0;
  font-size:32px;
}

.article-header p{
  margin:10px 0 0;
  font-size:18px;
}

/* =========================================================
   Artikel-UX (Tip-Top): Progress-Bar, TOC, Back-to-top
   Gilt nur auf Artikeln: <body class="article-page">
   ========================================================= */

.article-page .toc{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0 0;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}
.article-page .toc a{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
}
.article-page .toc a:hover{
  background:rgba(0,45,85,.06);
  text-decoration:none;
}

/* Back-to-top button */
.back-to-top:hover{ background:rgba(0,45,85,.06); }
.back-to-top:active{ transform:translateY(1px); }

/* TOC Links erzwingen (inkl. visited) */
.article-page .toc a,
.article-page .toc a:link,
.article-page .toc a:visited{
  color:#444 !important;
  text-decoration:none !important;
}

.article-page .toc a:hover,
.article-page .toc a:focus{
  color:#111 !important;
  background:rgba(0,0,0,.05) !important;
}

/* TOC-Farbe (neutral, inkl. visited) */
.article-page .toc a,
.article-page .toc a:link,
.article-page .toc a:visited{
  color:#444;
  text-decoration:none;
}
.article-page .toc a:hover,
.article-page .toc a:focus{
  color:#111;
  text-decoration:none;
  background:rgba(0,0,0,.05);
}

/* Progress-Bar */
.article-progress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  width:0%;
  background:var(--brand);
  z-index:2000;
}

html{ scroll-padding-top: 50px; }
[id]{ scroll-margin-top: 50px; }

.fullwidth-text{
  padding:10px 0 40px 0;
}

/* TOC / Jump Links */
.toc{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.toc a{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.03);
  text-decoration:none;
}
.toc a:hover{
  text-decoration:none;
  background:rgba(0,0,0,.06);
}

/* Service cards grid */
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:14px;
}
@media (max-width: 900px){
  .services-grid{ grid-template-columns:1fr; }
}

.service-card h3{
  margin:0 0 8px 0;
  font-size:18px;
  color:var(--brand, #002d55);
}
.service-card p{ margin:0; }
.service-card ul{ margin:10px 0 0 18px; }

.logo-small{
  width:100px;
  height:auto;
  display:block;
}

/* =========================================================
   EVM-Seite – spezifische Darstellung
   Gilt nur für: <body class="article-page evm-page">
   ========================================================= */

.evm-page .evm-hero-media{
  background:#ffffff;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  text-align:center;
}

.evm-page .evm-hero-media img{
  display:inline-block;
  width:100%;
  max-width:1100px;
  height:auto;
}

.evm-page .evm-main{
  padding-top:var(--s6);
}

.evm-page .evm-intro-card,
.evm-page .evm-section-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:26px 30px;
  margin-bottom:28px;
}

.evm-page .evm-highlight-card{
  background:#f7fbff;
  border-left:6px solid var(--brand);
}

.evm-page .evm-intro-card .section-heading,
.evm-page .evm-section-card .section-heading{
  margin-top:0;
}

.evm-page .section-paragraph{
  line-height:1.75;
}

.evm-page .evm-download-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:24px 28px;
  margin-top:10px;
  margin-bottom:34px;
}

@media (max-width: 900px){
  .evm-page .evm-intro-card,
  .evm-page .evm-section-card,
  .evm-page .evm-download-box{
    padding:22px 20px;
  }

  .evm-page .evm-hero-placeholder{
    height:220px;
    font-size:20px;
  }
}

/* =========================================================
   Coaching-Seite – spezifische Darstellung
   Gilt nur für: <body class="article-page coaching-page">
   ========================================================= */

.coaching-page .coaching-hero-media{
  background:#ffffff;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  text-align:center;
}

.coaching-page .coaching-hero-media img{
  display:inline-block;
  width:100%;
  max-width:1100px;
  height:auto;
}

.coaching-page .coaching-main{
  padding-top:var(--s6);
}

.coaching-page .coaching-intro-card,
.coaching-page .coaching-section-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:26px 30px;
  margin-bottom:28px;
}

.coaching-page .coaching-highlight-card{
  background:#f7fbff;
  border-left:6px solid var(--brand);
}

.coaching-page .coaching-intro-card .section-heading,
.coaching-page .coaching-section-card .section-heading{
  margin-top:0;
}

.coaching-page .section-paragraph{
  line-height:1.75;
}

.coaching-page .coaching-cta-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:24px 28px;
  margin-top:10px;
  margin-bottom:34px;
}

@media (max-width: 900px){
  .coaching-page .coaching-intro-card,
  .coaching-page .coaching-section-card,
  .coaching-page .coaching-cta-box{
    padding:22px 20px;
  }
}

/* =========================================================
   Rechte-an-Software-Seite – spezifische Darstellung
   Gilt nur für: <body class="article-page rights-page">
   ========================================================= */

.rights-page .rights-hero-media{
  background:#ffffff;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  text-align:center;
}

.rights-page .rights-hero-media img{
  display:inline-block;
  width:100%;
  max-width:1100px;
  height:auto;
}

.rights-page .rights-main{
  padding-top:var(--s6);
}

.rights-page .rights-intro-card,
.rights-page .rights-section-card{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:26px 30px;
  margin-bottom:28px;
}

.rights-page .rights-highlight-card{
  background:#f7fbff;
  border-left:6px solid var(--brand);
}

.rights-page .rights-intro-card .section-heading,
.rights-page .rights-section-card .section-heading{
  margin-top:0;
}

.rights-page .section-paragraph{
  line-height:1.75;
}

@media (max-width: 900px){
  .rights-page .rights-intro-card,
  .rights-page .rights-section-card{
    padding:22px 20px;
  }
}

/* =========================================================
   Allgemeine moderne Artikelseiten-Basis
   Für neue Seiten:
   <body class="article-page article-modern">
   ========================================================= */

.article-page.article-modern .article-modern-hero{
  background:#ffffff;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  text-align:center;
}

.article-page.article-modern .article-modern-hero img{
  display:inline-block;
  width:100%;
  max-width:1100px;
  height:auto;
}

.article-page.article-modern .article-modern-placeholder{
  height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #dfe8f2 0%, #f6f8fb 100%);
  color:var(--brand);
  font-size:24px;
  font-weight:800;
  border-bottom:1px solid var(--border);
  text-align:center;
  padding:0 20px;
}

.article-page.article-modern .article-modern-main{
  padding-top:var(--s6);
}

.article-page.article-modern .article-modern-intro,
.article-page.article-modern .article-modern-section,
.article-page.article-modern .article-modern-box{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:26px 30px;
  margin-bottom:28px;
}

.article-page.article-modern .article-modern-highlight{
  background:#f7fbff;
  border-left:6px solid var(--brand);
}

.article-page.article-modern .article-modern-intro .section-heading,
.article-page.article-modern .article-modern-section .section-heading,
.article-page.article-modern .article-modern-box .section-heading{
  margin-top:0;
}

.article-page.article-modern .section-heading{
  margin-top:0;
}

.article-page.article-modern .section-paragraph{
  line-height:1.75;
}

.article-page.article-modern .article-modern-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.article-page.article-modern .article-modern-columns > div{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:0 3px 14px rgba(0,0,0,.04);
  padding:24px 26px;
}

.article-page.article-modern .article-modern-list{
  margin:18px 0 0 0;
  padding-left:20px;
}

.article-page.article-modern .article-modern-list li{
  margin-bottom:10px;
  line-height:1.65;
}

.article-page.article-modern .article-modern-kpi{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:#f3f7fb;
  border:1px solid var(--border);
  font-weight:700;
  color:var(--brand);
}

.article-page.article-modern .article-modern-note{
  margin-top:16px;
  padding:16px 18px;
  border-left:4px solid var(--brand);
  background:#f8fafc;
  border-radius:10px;
}

@media (max-width:900px){
  .article-page.article-modern .article-modern-intro,
  .article-page.article-modern .article-modern-section,
  .article-page.article-modern .article-modern-box,
  .article-page.article-modern .article-modern-columns > div{
    padding:22px 20px;
  }

  .article-page.article-modern .article-modern-columns{
    grid-template-columns:1fr;
  }

  .article-page.article-modern .article-modern-placeholder{
    height:220px;
    font-size:20px;
  }
}

.hero-media img{
  width:100%;
  max-height:320px;
  object-fit:cover;
}

.privacy-note{
  margin-bottom:14px;
  font-size:0.9rem;
  color:#666;
  text-align:center;
}



.site-title{
font-size:28px;
font-weight:700;
color:#333;
}

.site-subtitle{
margin:0;
font-size:16px;
color:#666;
}


/* =========================================================
   Artikel-Header mit Bild links / Text rechts
   Nur für gezielt gesetzte Artikelblöcke
   Kaputtmacht nichts auf Index, Leistungen etc.
   ========================================================= */

/* =========================================================
   Artikel-Header mit Bild links / Text rechts
   Nur für gezielt gesetzte Artikelblöcke
   ========================================================= */

.article-hero-split {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  padding: 42px 0;
  border-top: 1px solid #e3e8ef;
  border-bottom: 1px solid #d8e1eb;
}

.article-hero-split__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 42px;
  align-items: center;
}

.article-hero-split__image {
  margin: 0;
}

.article-hero-split__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.article-hero-split__content {
  min-width: 0;
}

.article-hero-split__eyebrow {
  margin: 0 0 10px 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f6fe4;
}

.article-hero-split__content h2 {
  margin: 0 0 18px 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
  color: #0c2340;
}

.article-hero-split__lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.55;
  color: #31455a;
  max-width: 52ch;
}

/* Alte Artikel-Bild/Titel-Blöcke bei neuen Artikeln ausblenden */
.article-page .article-header {
  display: none;
}

.article-page .article-modern-hero {
  display: none;
}

/* Responsive Artikel-Header */
@media (max-width: 900px) {
  .article-hero-split {
    padding: 30px 0;
  }

  .article-hero-split__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-hero-split__image {
    max-width: 680px;
  }

  .article-hero-split__content h2 {
    margin-bottom: 14px;
  }

  .article-hero-split__lead {
    max-width: none;
  }
}

/* =========================================================
   Fazit / Kernaussage Box
   WICHTIG:
   .article-modern-fazit ist gleichzeitig auch .article-modern-section.
   Deshalb hier bewusst spezifischer überschreiben.
   ========================================================= */

.article-page.article-modern .article-modern-section.article-modern-fazit {
  background: linear-gradient(180deg, #eaf3ff 0%, #dceafb 100%) !important;
  border: 1px solid #c9d9ee;
  border-left: 10px solid #0b3a60;
  padding: 40px 45px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
}

.article-page.article-modern .article-modern-section.article-modern-fazit .fazit-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b7f95;
  margin-bottom: 6px;
}

.article-page.article-modern .article-modern-section.article-modern-fazit .section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0b3a60;
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: none;
}

.article-page.article-modern .article-modern-section.article-modern-fazit .fazit-core {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 22px 0;
  color: #0c2340;
}

.article-page.article-modern .article-modern-section.article-modern-fazit .section-note {
  font-size: 14px;
  color: #5f6b76;
  margin-top: 25px;
}

.article-page.article-modern .article-modern-section.article-modern-fazit .section-author {
  margin-top: 18px;
  font-weight: 700;
  color: #0c2340;
}

@media (max-width: 900px) {
  .article-page.article-modern .article-modern-section.article-modern-fazit {
    padding: 28px 22px;
    margin-top: 40px;
  }

  .article-page.article-modern .article-modern-section.article-modern-fazit .section-heading {
    font-size: 24px;
  }

  .article-page.article-modern .article-modern-section.article-modern-fazit .fazit-core {
    font-size: 19px;
  }
}



.quote-pop{
    border-left:4px solid #0b3a60;
    padding-left:18px;
    margin:20px 0;
    font-size:18px;
    font-weight:600;
    line-height:1.6;
    color:#0c2340;
}

/* ===============================
   Methodischer Einschub
   =============================== */

.method-box{

  background:#f4f8fd;

  border-left:6px solid #2f6fe4;

  padding:22px 26px;

  margin:40px 0;

  border-radius:8px;

  box-shadow:0 6px 18px rgba(0,0,0,0.06);

}

.method-title{

  font-size:18px;

  font-weight:700;

  margin-bottom:12px;

  color:#0c2340;

}

.method-box p{

  margin:12px 0;

  line-height:1.6;

}

.method-box ul{

  margin-top:12px;

  padding-left:18px;

}


.hero-kicker{
  font-size: 22px;
  font-weight: 600;
  color: #b00020; /* leicht kritisch, nicht zu aggressiv */
  margin-bottom: 10px;
}