@font-face{
  font-family:"CDU Inter";
  src:url("../fonts/Inter-Variable.ttf") format("truetype");
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
}
@font-face{
  font-family:"CDU Plex Serif";
  src:url("../fonts/IBMPlexSerif-Regular.ttf") format("truetype");
  font-style:normal;
  font-weight:400;
  font-display:swap;
}
@font-face{
  font-family:"CDU Plex Serif";
  src:url("../fonts/IBMPlexSerif-Bold.ttf") format("truetype");
  font-style:normal;
  font-weight:700;
  font-display:swap;
}

:root{
  --cdu-blau:#2d3c4b;
  --cdu-gold:#ffa600;
  --cdu-tuerkis:#52b7c1;
  --cdu-rot:#bf111b;
  --cdu-schwarz:#1b191d;
  --font-head: "CDU Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "CDU Plex Serif", Georgia, "Times New Roman", serif;

  --bg:#f1f1f1;
  --text:var(--cdu-schwarz);
  --muted:#566373;
  --border:#d8d8d8;
  --accent:var(--cdu-rot);

  --navh:70px;
  --maxw:1320px;
  --stripe:360px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}
img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; }
section{ scroll-margin-top: calc(var(--navh) + 18px); }

.wrap{ width: min(var(--maxw), calc(100% - 40px)); margin: 0 auto; }
.ph{ background:#ddd; border-radius:0 !important; }

/* ========= Buttons ========= */
.btn-gold{
  display:inline-flex; align-items:center; justify-content:center;
  height: 44px; padding: 0 22px;
  background: var(--cdu-gold);
  border: 1px solid #d79a00;
  color:#2b1e00;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  text-decoration:none;
}
.btn-gold:hover{ text-decoration:none; filter: brightness(.98); }

.btn-outline{
  display:inline-flex; align-items:center; justify-content:center;
  height: 44px; padding: 0 22px;
  background: transparent;
  border: 1px solid var(--cdu-blau);
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  text-decoration:none;
}
.btn-outline:hover{ text-decoration:none; background:#fafafa; }

.btn-soft{
  display:inline-flex; align-items:center; justify-content:center;
  height: 40px; padding: 0 14px;
  border: 1px solid #d9d9d9; background:#fff;
  font-family: var(--font-head);
  font-weight: 900; font-size: 12px;
  text-transform: uppercase;
  color: var(--cdu-blau);
  cursor:pointer;
}
.btn-40{ height:40px; }
.is-hidden{ display:none !important; }
.empty-note{ color:#888; font-size:.85rem; }
.hp-field{
  display:none;
  visibility:hidden;
  position:absolute;
  left:-9999px;
}

/* ========= NAV ========= */
.topbar{
  position: sticky; top:0; z-index: 2000;
  height: var(--navh);
  background: var(--cdu-tuerkis);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  height: var(--navh);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.brand-logo {
  height: 40px;       /* anpassen falls nötig */
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--cdu-schwarz);
  letter-spacing: .02em;
}


.navlinks{
  display:flex; gap: 6px; align-items:center;
  list-style:none; margin:0; padding:0;
}
.navlinks > li{ position:relative; }
.navlinks a{
  display:inline-flex;
  align-items:center;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cdu-blau);
  border: 1px solid transparent;
  user-select:none;
}
.navlinks a.active{ background: var(--cdu-blau); color:#fff; text-decoration:none; }

.caret{
  display:inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity:.9;
}

.dd{
  display:none;
  position:absolute;
  top: 46px;
  left: 0;
  min-width: 240px;
  background:#fff;
  border: 1px solid #e3e3e3;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 2100;
}
.dd a{
  display:block;
  height:auto;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cdu-blau);
  border:0;
}
.dd a:hover{ background:#f6f6f6; text-decoration:none; }
.navlinks li.open > .dd{ display:block; }

.burger{
  display:none;
  width: 48px; height: 44px;
  border: 1px solid var(--border);
  background:#fff;
  align-items:center; justify-content:center;
  gap:4px;
  flex-direction:column;
  cursor:pointer;
}
.burger i{ width:20px; height:2px; background: var(--cdu-blau); display:block; }

.mobile-nav{
  display:none;
  background:#fff;
  border-bottom:1px solid var(--border);
  padding: 8px 0 12px;
}
.mobile-nav a{
  display:block;
  padding: 11px 18px;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cdu-blau);
}
.mobile-nav a:hover{ background:#f6f6f6; text-decoration:none; }

@media (max-width: 992px){
  .navlinks{ display:none; }
  .burger{ display:flex; }
}

/* ========= HERO ========= */
.heroB{
  background:#fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 34px 0;
}
.heroB-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:end;
}
.heroB .kicker{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 10px;
  background: #fff;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--muted);
  font-weight: 800;
}
.heroB h1{
  margin: 0;
  color: #fff;
  background: var(--cdu-blau);
  display: block;
  width: fit-content;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.02em; /* CI: leichte Verdichtung */
  line-height:1.05;
}
.heroB .claim{
  display:inline-block;
  background: var(--cdu-gold);
  color:#fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
  font-family: var(--font-head);
  font-weight: 900;
  padding: 12px 16px;
  font-size: 18px;
  margin: 0 0 14px;
}
.heroB p{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height:1.75;
  font-weight: 400;
  max-width: 80ch;
}
.heroB-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top: 10px; }
.share-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.share-actions button{ height: 40px; padding: 0 14px; }

.portraitCard{ width:75%; border: 1px solid #e3e3e3; background:#fff; padding: 12px; }
.portraitCard img{
  width:100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0 !important;
  background:#ddd;
}
.portraitNote{
  margin-top: 10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
@media (max-width: 992px){
  .heroB-grid{ grid-template-columns: 1fr; }
  .heroB h1{ font-size: 38px; }
}

/* ========= TRUSTBAR ========= */
.trustbar{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding: 18px 0;
}
.trustgrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items:stretch;
}
.trustitem{
  background:#fff;
  border: 1px solid #e3e3e3;
  padding: 12px;
}
.trustitem b{
  display:block;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cdu-blau);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  margin-bottom: 6px;
}
.trustitem span{
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
  line-height:1.5;
}
.trustitem a{
  text-decoration:none;
}
.trustitem-termine a{
  display:inline-block;
  margin-top:2px;
  padding:4px 8px;
  background:#f3f7fb;
  border-bottom:2px solid var(--cdu-blau);
}
.trustitem-termine a span{
  color:var(--cdu-blau);
  font-weight:700;
}
.trustitem a:hover span{
  color:var(--cdu-blau);
  text-decoration:underline;
}
.trustitem small{
  display:block;
  margin-top:6px;
  color:#4d4d4d;
  font-size:12px;
  line-height:1.45;
}
.trustitem-termine{
  background:#eef8f7;
}
@media (max-width: 992px){ .trustgrid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .trustgrid{ grid-template-columns: 1fr; } }

/* ========= INTRO ========= */
.intro-band{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding: 26px 0;
}
.intro-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 26px;
  align-items:center;
}
.divider{ width:1px; height:100%; background:#cfcfcf; }
.intro-left h2{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  letter-spacing:-.01em;
}
.intro-left p{
  margin:0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.75;
  font-weight: 400;
  max-width: 75ch;
}
.intro-right{
  background:transparent;
  padding:22px;
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.intro-upload-box{
  width:100%;
  min-height:280px;
  border:0;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.intro-upload-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
.intro-upload-box.has-image .intro-upload-image{
  display:block;
}
.intro-upload-empty{
  padding:24px;
  text-align:center;
  color:#fff;
  font-family: var(--font-head);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:14px;
}
@media (max-width: 768px){
  .intro-grid{ grid-template-columns: 1fr; }
  .divider{ display:none; }
  .intro-right{ min-height:260px; }
}

/* ========= STRIPE LAYOUT ========= */
.stripe-section{ background:#fff; }
.stripe-row{ display:grid; grid-template-columns: var(--stripe) 1fr; }
.stripe-left{ background: var(--cdu-blau); }
.stripe-content{ background:#fff; padding: 62px 0; }
.stripe-inner{ display:grid; grid-template-columns: 560px 1fr; gap: 50px; align-items:start; }

.label-stack{ display:flex; flex-direction:column; gap: 7px; align-items:flex-start; margin-bottom: 18px; }
.label-dark{
  background: var(--cdu-blau); color:#fff;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing:.04em;
}
.block-text p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height:1.75;
  font-weight: 400;
  max-width: 80ch;
}
.img-note{ margin-top: 8px; font-size: 12px; color: var(--muted); font-weight: 400; }

@media (max-width: 1200px){
  :root{ --stripe: 300px; }
  .stripe-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  .stripe-row{ grid-template-columns: 1fr; }
  .stripe-left{ display:none; }
  .stripe-content{ padding: 48px 0; }
}

/* ========= ÜBER MICH ACCORDION ========= */
.about-cards{ display:grid; grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
.about-card{ border: 1px solid #e3e3e3; background:#fff; }
.about-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border:0;
  background:#fff;
  cursor:pointer;
  text-align:left;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cdu-blau);
  font-size: 15px;
}
.about-btn:hover{ background:#fafafa; }
.about-panel{
  display:none;
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.75;
  font-weight: 400;
}
.about-card.open .about-panel{ display:block; }

.arrowDown{
  width: 14px; height: 14px;
  border-right: 3px solid var(--cdu-gold);
  border-bottom: 3px solid var(--cdu-gold);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex: 0 0 auto;
}
.about-card.open .arrowDown{ transform: rotate(-135deg); }

/* ========= ZIELE ========= */
.goals-band{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  padding: 40px 0;
}
.chip{
  background: var(--cdu-blau);
  color:#fff;
  font-family: var(--font-head);
  font-weight: 900;
  padding: 12px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  display:inline-block;
}
.goals-sub{
  margin:10px 0 8px;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cdu-blau);
  font-size: 18px;
  letter-spacing:-.01em;
}
.goals-text{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.75;
  font-weight: 400;
  max-width: 90ch;
}
.accordion-wrap{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.acc{ background:#fff; border: 1px solid #e3e3e3; }
.acc button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border:0;
  background:#fff;
  cursor:pointer;
  text-align:left;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cdu-blau);
  font-size: 15px;
}
.acc button:hover{ background:#fafafa; }
.acc .panel{
  display:none;
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.75;
  font-weight: 400;
}
.acc .panel ul{ margin:10px 0 0 18px; padding:0; }
.acc .panel li{ margin: 6px 0; }
.acc.open .panel{ display:block; }
.acc.open .arrowDown{ transform: rotate(-135deg); }
@media (max-width: 992px){ .accordion-wrap{ grid-template-columns: 1fr; } }

/* ========= PRESSE ========= */
.press{
  background:#fff;
  border-top: 1px solid #e8e8e8;
}
.press h3{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing:.04em;
}
.pressgrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 12px;
  align-items:start;
}
.pbox{
  border: 1px solid #e3e3e3;
  background:#fff;
  padding: 14px;
}
.pbox b{
  display:block;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.04em;
  margin-bottom: 10px;
}
.ptext{
  margin:0;
  color: var(--muted);
  font-weight: 400;
  line-height:1.7;
}
.dl{ display:grid; gap: 10px; }
.dl a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  background:#fff;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--cdu-blau);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.03em;
  text-decoration:none;
}
.dl a:hover{ background:#fafafa; }
.dl a span{ color: var(--muted); font-weight: 400; text-transform:none; font-size: 12px; letter-spacing:0; }
@media (max-width: 992px){ .pressgrid{ grid-template-columns: 1fr; } }

/* ========= SOCIAL (FULL BLEED + 2-Klick) ========= */
.social{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  padding: 44px 0;
}
.social h3{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing:.04em;
}
.social p{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.7;
  font-weight: 400;
  max-width: 90ch;
}
.social-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
  width:100%;
}
.socialActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

/* Full bleed helper */
.social-full{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 56px 0;
}
.social-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.social-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* twoClickBox: 100% */
.social .twoClickBox{
  width:100%;
  max-width:100%;
  background:#fff;
  border: 1px solid #e3e3e3;
  padding: 14px;
}

.twoClickTop{ display:flex; flex-direction:column; gap:10px; }
.twoClickNotice{
  border: 1px dashed #cfcfcf;
  background:#fafafa;
  padding: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0;
}

.embedArea{
  display:block;
  border: 1px solid #e6e6e6;
  background:#fff;
  padding: 14px;
  border-radius: 18px;
}

.igHint{
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 10px;
}

.igGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

/* Embeds */
.igTile{
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
  border: 1px solid #e6e6e6;
  min-height: 420px;
  display:flex;
  align-items:stretch;
}
.igTile iframe{
  width:100%;
  border:0;
  min-height: 420px;
}

/* API-Mode (Thumbnails statt Embeds) */
.igTile.media{min-height:0;aspect-ratio:1/1;position:relative;}
.igTile.media a{display:block;width:100%;height:100%;}
.igTile.media img{display:block;width:100%;height:100%;object-fit:cover;}
.igPlay{position:absolute;right:10px;bottom:10px;width:38px;height:38px;border-radius:999px;background:rgba(0,0,0,.55);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:15px;pointer-events:none;}

/* Script-Embed Mode (embed.js) */
.igTile.igScript{min-height:420px;display:block;overflow:hidden;}
.igTile.igScript blockquote{margin:0!important;max-width:100%!important;width:100%!important;}


/* Placeholder */
.igTile.ph{
  min-height: 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-head);
  font-weight:700;
  color: var(--muted);
  background:#f2f2f2;
}

.igDisclaimer{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.contact-form-note{
  margin-bottom:12px;
  color:#666;
}
.press-mail-row{
  margin-top:10px;
}
.footer-implemented{
  font-size:.8rem;
  opacity:.7;
}
.footer-meta-row{
  text-align:center;
  padding-top:6px;
  font-size:.72rem;
  opacity:.5;
}
.footer-meta-link{
  color:inherit;
  text-decoration:none;
}
.footer-meta-link:hover{
  text-decoration:none;
}
.maintenance-shell{
  min-height:calc(100vh - var(--navh));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px 60px;
}
.maintenance-card{
  width:min(760px, 100%);
  background:#fff;
  border:1px solid #dfe7ef;
  box-shadow:0 18px 44px rgba(12,31,53,.08);
  padding:34px 32px;
  text-align:center;
}
.maintenance-kicker{
  margin:0 0 10px;
  color:var(--cdu-rot);
  font-family:var(--font-head);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.maintenance-card h1{
  margin:0 0 14px;
  color:var(--cdu-blau);
  font-family:var(--font-head);
  font-size:clamp(1.9rem,4vw,3rem);
  line-height:1.05;
}
.maintenance-card p{
  margin:0;
  color:#526171;
  font-size:1rem;
  line-height:1.75;
}

@media (max-width: 980px){
  .igGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .igGrid{ grid-template-columns: 1fr; }
}

/* ========= NEWS ========= */
.news{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  padding: 44px 0;
}
.termine{
  background:#ffffff;
  border-top: 1px solid #e3e3e3;
  padding: 44px 0;
}
.statements{
  background:#efefef;
  border-top: 1px solid #e3e3e3;
  padding: 44px 0;
}
.news h3{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing:.04em;
}
.termine h3, .statements h3{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing:.04em;
}
.newsgrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.ncard{
  border: 1px solid #e3e3e3;
  background:#fff;
  overflow:hidden;
  border-radius: 0 !important;
}
.ncard img{ width:100%; aspect-ratio: 16/9; object-fit:cover; border-radius:0 !important; display:block; }
.nbody{ padding: 14px; }
.nbody b{
  display:block;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing:.03em;
  margin-bottom: 8px;
}
.nbody p{
  margin:0 0 10px;
  color: var(--muted);
  font-weight: 400;
  line-height:1.7;
  font-size: 14px;
}
.news-source-row{
  display:flex;
  gap:8px;
  align-items:center;
  margin:0 0 8px;
  flex-wrap:wrap;
}
.news-source-badge{
  display:inline-flex;
  align-items:center;
  border:1px solid #c9d8f2;
  background:#eef4ff;
  color:#274c85;
  font-family: var(--font-head);
  font-weight:800;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:4px 8px;
}
@media (max-width: 992px){ .newsgrid{ grid-template-columns: 1fr; } }

/* ========= KONTAKT ========= */
.donation-band{
  background:#fff;
  padding: 54px 0;
  border-top: 1px solid #e3e3e3;
}
.donation-box{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:start; }
.donation-copy,
.donation-card{ background:#fff; border: 1px solid #e5e5e5; padding: 16px; }
.donation-media{ margin: 0 0 14px; }
.donation-media img{
  width:100%;
  max-height:320px;
  object-fit:cover;
  display:block;
  border:1px solid #ececec;
}
.donation-band h3{
  margin:0 0 10px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing:.04em;
}
.donation-copy p, .donation-copy li, .donation-copy div{ font-size: 14px; color: var(--muted); font-weight: 400; line-height:1.8; }
.donation-note{ margin: 12px 0 0; font-size:12px; }
.donation-data{ display:grid; gap: 12px; margin:0 0 16px; }
.donation-data div{ padding-bottom:12px; border-bottom:1px solid #efefef; }
.donation-data div:last-child{ padding-bottom:0; border-bottom:0; }
.donation-data dt{
  margin:0 0 4px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
}
.donation-data dd{ margin:0; font-size: 14px; color: var(--muted); font-weight: 400; line-height:1.7; word-break: break-word; }
.donation-btn{ width:100%; justify-content:center; }

.contact-band{
  background:#efefef;
  padding: 54px 0;
  border-top: 1px solid #e3e3e3;
}
.contact-grid{ display:grid; grid-template-columns: 360px 1fr; gap: 28px; align-items:start; }
.panelbox{ background:#fff; border: 1px solid #e5e5e5; padding: 16px; }
.panel-title{
  display:inline-block;
  background: var(--cdu-blau);
  color:#fff;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  margin-bottom: 10px;
}
.panelbox p, .panelbox li{ font-size: 14px; color: var(--muted); font-weight: 400; line-height:1.7; }

.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full{ grid-column: 1 / -1; }
.input{
  width:100%;
  height: 44px;
  border: 1px solid #dedede;
  padding: 10px 12px;
  font-size: 14px;
  outline:none;
  background:#fff;
  font-family: var(--font-body);
}
textarea.input{ height: 140px; resize: vertical; }

.checkrow{
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  display:flex;
  gap: 8px;
  align-items:flex-start;
}
.checkrow input{ margin-top: 4px; }

.sendbtn{
  width: 100%;
  height: 46px;
  background: var(--cdu-gold);
  border: 1px solid #d79a00;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.04em;
  color:#2b1e00;
  margin-top: 12px;
  cursor:pointer;
}
.status{
  margin-top: 12px;
  border: 1px dashed #cfcfcf;
  background:#fafafa;
  padding: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  display:none;
  border-radius: 8px;
}
.status.ok{
  display:block;
  background:#e8f5ee;
  border:1px solid #a8d5b8;
  color:#1a7a3f;
  font-weight:700;
}
.status.err{
  display:block;
  background:#fff0f0;
  border:1px solid #f5b8b8;
  color:var(--cdu-rot);
  font-weight:700;
}
.formhint{ font-size:12px; color:var(--muted); font-weight:400; }

@media (max-width: 900px){
  .donation-box{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
}

/* ========= LEGAL / FOOTER ========= */
.legal{ background:#fff; padding: 48px 0; border-top: 1px solid #e8e8e8; }
.legal .box{ border: 1px solid #e5e5e5; background:#fff; padding: 16px; }
.legal-fold{ padding:0 !important; }
.legal-fold summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  color: var(--cdu-blau);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing:.04em;
}
.legal-fold summary::-webkit-details-marker{ display:none; }
.legal-arrow{
  width:12px;
  height:12px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex: 0 0 auto;
}
.legal-fold[open] .legal-arrow{ transform: rotate(-135deg); }
.legal-content{ padding: 0 18px 18px; }
.legal h3{
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  color: var(--cdu-blau);
  text-transform: uppercase;
  letter-spacing:.04em;
  margin: 0 0 10px;
}
.legal p, .legal li{ font-size: 14px; color: var(--muted); font-weight: 400; line-height:1.8; }

.footer{
  background: var(--cdu-blau);
  color:#fff;
  padding: 18px 0;
  font-size: 12px;
  font-weight: 400;
}
.footer a{ color:#fff; text-decoration: underline; }

.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  background: var(--cdu-gold);
  border: 1px solid #d79a00;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 2600;
}
.toTop:before{
  content:"";
  width: 10px; height: 10px;
  border-left: 3px solid #2b1e00;
  border-top: 3px solid #2b1e00;
  transform: rotate(45deg);
  margin-top: 4px;
}
/* ===== News Add-ons ===== */
.news-sub{
  margin:0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.7;
  font-weight: 650;
  max-width: 90ch;
}
.nmeta{
  margin: 8px 0 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.news-archive-row{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* Termine: kompakte Aktionsleiste unter den Karten */
.termine-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* ========= Statements Carousel ========= */
.carousel{
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.carViewport{
  overflow:hidden;
  border-radius: 16px;
}
.carTrack{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}
.carSlide{
  /* IMPORTANT:
     flex:0 0 100% erzwingt volle Breite pro Slide.
     (min-width alleine kann je nach Browser/CSS-Kontext zu schmalen Slides führen) */
  flex: 0 0 100%;
  min-width: 100%;
  padding: 2px; /* small spacing so card shadow doesn't clip */
}

/* Karte im Slider soll die volle Slide-Breite nutzen */
.carSlide .ncard{ width: 100%; }
.carBtn{
  height:44px;
  width:44px;
  border-radius: 999px;
  border:1px solid #e3e3e3;
  background:#fff;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
}
.carBtn:hover{
  background:#fafafa;
}
.carBtn:disabled{
  opacity:.35;
  cursor: not-allowed;
}
.carDots{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-top: 12px;
}
.carDot{
  height: 10px;
  width: 10px;
  border-radius: 999px;
  border:1px solid #d8d8d8;
  background:#fff;
  cursor:pointer;
}
.carDot.active{
  background: var(--cdu-gold);
  border-color: var(--cdu-gold);
}
@media (max-width: 720px){
  .carousel{
    grid-template-columns: 40px 1fr 40px;
  }
  .carBtn{
    height:40px;
    width:40px;
  }
}


/* ========= Beitrag Modal ========= */
.newsModal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.newsModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}

.newsModalBox {
  position: relative;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  z-index: 1;
}

.newsModalClose {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  background: #f4f4f4;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s;
}
.newsModalClose:hover { background: #e0e0e0; }

.newsModalContent { clear: both; }

.newsModal .modalImg {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

.newsModal .modalBody {
  padding: 24px 28px 28px;
}

.newsModal .modalType {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent, #c00);
  margin: 0 0 6px;
}

.newsModal .modalTitle {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
}

.newsModal .modalMeta {
  font-size: .85rem;
  color: #666;
  font-weight: 600;
  margin: 0 0 16px;
}

.newsModal .modalContent {
  line-height: 1.75;
  color: #222;
  margin-bottom: 20px;
}

.newsModal .modalActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Prevent body scroll when modal open — handled via JS */


/* =============================================
   STATEMENTS SLIDER
============================================= */
.stmSlider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 -8px;
}
.stmViewport {
  overflow: hidden;
  flex: 1;
  border-radius: 0;
}
.stmTrack {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.stmSlide {
  min-width: 100%; /* overridden by JS for multi-view */
  max-width: 100%;
  padding: 4px 8px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.stmSlide-grid{
  min-width: unset;
}
.stmCard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  height: 100%;
}
.stmImg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}
.stmCardInner {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.stmQuoteIcon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent, #c00);
  font-family: Georgia, serif;
  margin-bottom: -6px;
}
.stmTitle {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}
.stmExcerpt {
  color: #444;
  line-height: 1.65;
  margin: 0;
}
.stmBy {
  font-size: .85rem;
  font-weight: 700;
  color: #666;
  margin: 0;
}
.stm-empty { color: #888; text-align: center; padding: 30px 0; }

.stmBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  color: #333;
}
.stmBtn:hover:not(:disabled) { border-color: var(--accent, #c00); color: var(--accent, #c00); background: #fff5f5; }
.stmBtn:disabled { opacity: .3; cursor: default; }

.stmDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.stmDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.stmDot.active {
  background: var(--accent, #c00);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .stmSlider { margin: 0 -4px; }
  .stmBtn { width: 36px; height: 36px; font-size: 1.2rem; }
  .stmCardInner { padding: 18px 18px 20px; }
}

/* =============================================
   ARTIKEL-EINZELSEITE (news.html)
============================================= */
.news-page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.news-loading {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 1.05rem;
}
.archive-shell{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:28px 0 8px;
}
.archive-hero{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  padding:32px;
  background:
    radial-gradient(circle at top right, rgba(168,199,255,.38), transparent 28%),
    linear-gradient(135deg,#f4f8fb 0%, #ffffff 62%);
  border:1px solid #e4ebf2;
  box-shadow:0 18px 44px rgba(12,31,53,.08);
}
.archive-kicker{
  margin:0 0 10px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--cdu-blau);
}
.archive-headline{
  margin:0;
  font-size:clamp(1.8rem,4vw,3rem);
  line-height:1.02;
  font-weight:900;
  color:#132235;
}
.archive-lead{
  margin:10px 0 0;
  max-width:64ch;
  color:#526171;
  line-height:1.7;
}
.archive-hero-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}
.archive-count{
  padding:8px 12px;
  background:#fff;
  border:1px solid #e2e8ef;
  color:#526171;
  font-weight:700;
}
.archive-type-nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:6px;
  background:#edf3f9;
  border:1px solid #d9e4ee;
}
.archive-type-link{
  padding:10px 14px;
  border:1px solid transparent;
  background:transparent;
  color:#27415f;
  font-weight:800;
  text-decoration:none;
  transition:background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.archive-type-link:hover{
  background:#fff;
  border-color:#d9e1ea;
  transform:translateY(-1px);
}
.archive-type-link.active{
  background:var(--cdu-blau);
  border-color:var(--cdu-blau);
  color:#fff;
}
.archive-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  padding-bottom:8px;
  border-bottom:1px solid #e1e8ef;
}
.archive-toolbar-actions{
  justify-content:flex-end;
}
.archive-toolbar-termine{
  gap:10px;
  margin:0;
}
.archive-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}
.archive-card{
  display:flex;
  flex-direction:column;
  box-shadow:0 10px 26px rgba(15,32,55,.06);
  transition:transform .16s ease, box-shadow .16s ease;
  border:1px solid #dfe7ef;
}
.archive-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(15,32,55,.1);
}
.archive-card-media{
  background:linear-gradient(135deg,#ecf3fb 0%,#f8fbff 100%);
  min-height:180px;
}
.archive-card-media img{
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
  display:block;
}
.archive-card-placeholder{
  height:100%;
  min-height:180px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  gap:8px;
  padding:20px;
  color:#17304e;
  background:
    linear-gradient(135deg, rgba(0,76,147,.12), rgba(200,216,236,.35)),
    repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(255,255,255,.5) 16px, rgba(255,255,255,.5) 32px);
}
.archive-card-placeholder.is-news{
  background:
    radial-gradient(circle at top right, rgba(182,217,255,.55), transparent 28%),
    linear-gradient(135deg, #edf5ff 0%, #dfeefe 100%);
}
.archive-card-placeholder.is-termine{
  background:
    radial-gradient(circle at top right, rgba(252,210,214,.5), transparent 28%),
    linear-gradient(135deg, #fff0f1 0%, #ffe3e6 100%);
}
.archive-card-placeholder.is-statements{
  background:
    radial-gradient(circle at top right, rgba(197,236,231,.55), transparent 28%),
    linear-gradient(135deg, #effbf8 0%, #dff4ee 100%);
}
.archive-card-placeholder.is-hero{
  min-height:320px;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:36px;
}
.archive-card-placeholder-icon{
  font-size:34px;
  line-height:1;
}
.archive-card-placeholder-label{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border:1px solid rgba(23,48,78,.14);
  background:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.article-hero-placeholder{
  margin-bottom:28px;
}
.archive-card-body{
  display:flex;
  flex-direction:column;
  flex:1;
  gap:10px;
  padding:18px;
}
.archive-card-badge{
  display:inline-flex;
  align-items:center;
  border:1px solid #dae3f1;
  background:#fff;
  color:var(--cdu-blau);
  font-weight:800;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:4px 8px;
}
.archive-card-title{
  margin:0;
  font-size:18px;
  line-height:1.35;
  text-transform:none;
  letter-spacing:0;
}
.archive-card-excerpt{
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:96px;
}
.archive-card-meta{
  margin-top:auto;
  padding-top:4px;
}
.archive-card-actions{
  display:flex;
  justify-content:flex-start;
  padding-top:6px;
}
.article-shell{
  max-width:900px;
}
.article-header-card,
.article-body-card{
  background:#fff;
  border:1px solid #e6ecf2;
  padding:24px 26px;
}
.article-header-card{
  margin-bottom:18px;
}
.article-body-card{
  margin-bottom:28px;
}

/* Breadcrumb */
.article-breadcrumb {
  font-size: .82rem;
  color: #888;
  margin-bottom: 20px;
}
.article-breadcrumb a { color: #888; text-decoration: none; }
.article-breadcrumb a:hover { color: var(--accent, #c00); }

/* Header */
.article-header { margin-bottom: 20px; }
.article-type-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent, #c00);
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.article-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}
.article-meta {
  font-size: .88rem;
  font-weight: 700;
  color: #666;
  margin: 0;
}
.article-external-note{
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #d7e3f8;
  background: #f5f9ff;
  color: #2b4774;
  font-size: 14px;
  line-height: 1.7;
}

/* Hero-Bild */
.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 28px;
  display: block;
}

/* Body */
.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 32px;
}
.article-body h1, .article-body h2, .article-body h3 {
  margin: 1.4em 0 .5em;
  font-weight: 800;
  line-height: 1.25;
}
.article-body h1 { font-size: 1.5rem; }
.article-body h2 { font-size: 1.25rem; }
.article-body h3 { font-size: 1.05rem; }
.article-body p  { margin: 0 0 1em; }
.article-body ul, .article-body ol { margin: 0 0 1em 1.4em; }
.article-body li { margin-bottom: .4em; }
.article-body a  { color: var(--accent, #c00); }
.article-body strong { font-weight: 800; }

/* Footer */
.article-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

/* Archiv */
.archive-section { padding: 0; }
.archive-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
}
.archive-empty{
  background:#fff;
  border:1px solid #e6ecf2;
  padding:28px;
}

@media (min-width: 1200px){
  .archive-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .archive-hero{
    flex-direction:column;
    align-items:flex-start;
  }
  .archive-hero-actions{
    align-items:flex-start;
  }
  .archive-toolbar{
    flex-direction:column;
    align-items:flex-start;
  }
  .archive-grid{
    grid-template-columns:1fr;
  }
  .archive-card-media,
  .archive-card-placeholder{
    min-height:160px;
  }
}

@media (max-width: 640px){
  .archive-shell{
    padding-top:18px;
  }
  .archive-hero{
    padding:22px 18px;
  }
  .archive-type-nav{
    gap:8px;
    padding:8px;
  }
  .archive-type-link{
    flex:1 1 calc(50% - 8px);
    text-align:center;
  }
  .archive-card-body{
    padding:16px;
  }
  .archive-card-excerpt{
    min-height:auto;
    -webkit-line-clamp:5;
  }
  .archive-card-placeholder.is-hero{
    min-height:220px;
    padding:24px 18px;
  }
}

/* Fehler */
.article-error {
  text-align: center;
  padding: 60px 20px;
}
.article-error h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.article-error p  { color: #666; margin-bottom: 20px; }
.article-error a  { margin: 4px; }

/* Cookie banner */
#cookieBanner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:9999;
  background:var(--cdu-schwarz);
  color:#eee;
  padding:14px 20px;
  box-shadow:0 -4px 20px rgba(0,0,0,.35);
}
.cb-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.cb-text{
  flex:1;
  font-size:.85rem;
  line-height:1.5;
}
.cb-text strong{
  display:block;
  margin-bottom:3px;
  font-size:.9rem;
  color:#fff;
}
.cb-btns{
  display:flex;
  gap:8px;
  flex-shrink:0;
}
.cb-btn{
  border:none;
  border-radius:7px;
  padding:8px 18px;
  font-size:.83rem;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
}
.cb-ok{
  background:var(--cdu-rot);
  color:#fff;
}
.cb-ok:hover{
  background:#8f0d14;
}
.cb-info{
  background:rgba(255,255,255,.12);
  color:#ddd;
}
.cb-info:hover{
  background:rgba(255,255,255,.2);
  text-decoration:none;
}

@media (max-width:600px){
  .cb-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cb-btns{
    width:100%;
  }
}


/* =============================================
   TERMINE – Kalender-Karten-Design
============================================= */
.terminegrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.termin-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-left: 4px solid var(--cdu-rot);
  overflow: hidden;
  transition: box-shadow .15s;
}
.termin-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

/* Kalender-Datum-Block */
.termin-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 14px 10px;
  background: var(--cdu-rot);
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}
.termin-day   { font-size: 1.9rem; font-weight: 900; line-height: 1; }
.termin-month { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .9; margin-top: 2px; }
.termin-year  { font-size: .68rem; opacity: .75; margin-top: 1px; }

/* Inhalt */
.termin-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.termin-title {
  font-size: .95rem;
  font-weight: 900;
  color: var(--cdu-schwarz);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
}
.termin-excerpt {
  font-size: .82rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.termin-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: .8rem;
  color: #555;
  font-weight: 600;
}
.termin-info span { display: flex; align-items: center; gap: 4px; }

/* Bild rechts (optional) */
.termin-img {
  width: 100px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
}

/* Link-Bereich */
.termin-action {
  display: flex;
  align-items: center;
  padding: 0 14px;
  flex-shrink: 0;
}

/* Kein Datum vorhanden */
.termin-date-block.no-date {
  background: #888;
  min-width: 60px;
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .termin-img { display: none; }
  .termin-date-block { min-width: 58px; }
  .termin-day { font-size: 1.5rem; }
}

/* Vergangene Termine: grau */
.termin-date-block.past {
  background: #888 !important;
}
.termin-card:has(.termin-date-block.past) {
  border-left-color: #aaa;
  opacity: .75;
}

/* =============================================
   STATEMENTS GRID-MODUS (≤ 3 Statements)
============================================= */
/* Wenn stmTrack als Grid, Viewport sichtbar */
.stmViewport.grid-mode {
  overflow: visible;
}
/* stmCard im Grid: volle Breite */
.stmSlide { box-sizing: border-box; }

/* Weiterlesen-Button im Statement: volle Breite */
.stmCardInner .btn-outline {
  display: block;
  text-align: center;
  margin-top: 4px;
}

/* Statement-Slider: Pfeile klar positioniert */
.stmSlider {
  align-items: flex-start;
}
.stmBtn {
  margin-top: 20px;
}

