/* =========================================================
   JHB Scoped Styles Unabhängiger Träger
   ========================================================= */
.jhb-ut-2026{
  --jhb-orange: #E9620B;
  --jhb-orange-dark: #c24e04;
  --jhb-orange-soft: rgba(233,98,11,.10);
  --jhb-bg: #f7f7f9;
  --jhb-card: #ffffff;
  --jhb-text: #222222;
  --jhb-muted: #666666;
  --jhb-border: rgba(0,0,0,.06);
  --jhb-radius-lg: 16px;
  --jhb-radius-xl: 24px;
  --jhb-shadow: 0 10px 25px rgba(0,0,0,.06);
  --jhb-shadow-strong: 0 16px 40px rgba(0,0,0,.08);
  --jhb-max: 1120px;

  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--jhb-text);
  line-height: 1.7;
  font-size: 16px;

  /* Fullbleed background within WP content area */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background:
    radial-gradient(circle at 12% 6%, #ffe3cc 0%, rgba(255,227,204,0) 52%),
    radial-gradient(circle at 88% 86%, #fff0e3 0%, rgba(255,240,227,0) 55%),
    var(--jhb-bg);
  background-attachment: fixed;
}

.jhb-ut-2026 *{ box-sizing: border-box; }

.jhb-ut-2026 a{
  color: var(--jhb-orange);
  text-decoration: none;
  transition: color .15s ease;
}
.jhb-ut-2026 a:hover{ color: var(--jhb-orange-dark); text-decoration: underline; }

.jhb-ut-2026 .wrap{
  width: 100%;
  max-width: var(--jhb-max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Typography */
.jhb-ut-2026 h1,
.jhb-ut-2026 h2,
.jhb-ut-2026 h3{
  margin: 0 0 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .01em;
}
.jhb-ut-2026 h1{ font-size: clamp(24px, 4.2vw, 38px); }
.jhb-ut-2026 h2{ font-size: clamp(20px, 3.0vw, 28px); font-weight: 800; }
.jhb-ut-2026 h3{ font-size: 18px; font-weight: 800; }

.jhb-ut-2026 p{ margin: 0 0 12px; }
.jhb-ut-2026 .muted{ color: var(--jhb-muted); }
.jhb-ut-2026 .center{ text-align: center; }
.jhb-ut-2026 .max-560{ max-width: 560px; margin-left:auto; margin-right:auto; }
.jhb-ut-2026 .max-680{ max-width: 680px; margin-left:auto; margin-right:auto; }

/* Section rhythm */
.jhb-ut-2026 .section{
  padding: clamp(26px, 4.2vw, 44px) 0;
  border-top: 1px solid rgba(0,0,0,.03);
}
.jhb-ut-2026 .section:first-of-type{ border-top: 0; }
.jhb-ut-2026 .section-head{ margin-bottom: 18px; }

/* Hero */
.jhb-ut-2026 .hero{
  padding: clamp(34px, 5vw, 72px) 0 clamp(20px, 3.4vw, 42px);
}
.jhb-ut-2026 .hero-card{
  background: linear-gradient(135deg, #ffffff, #ffe9d6);
  border-radius: 28px;
  box-shadow: var(--jhb-shadow);
  padding: clamp(22px, 3.4vw, 42px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.jhb-ut-2026 .hero-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--jhb-shadow-strong);
}
.jhb-ut-2026 .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--jhb-orange-soft);
  color: var(--jhb-orange);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
  margin-bottom: 12px;
}
.jhb-ut-2026 .pill-dot{
  width: 8px; height: 8px; border-radius: 999px; background: var(--jhb-orange);
}
.jhb-ut-2026 .badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--jhb-orange);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(233,98,11,.35);
}
.jhb-ut-2026 .badge .ico{
  width: 20px; height: 20px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.18);
  font-size: 14px;
  line-height: 1;
}

/* Layout grids */
.jhb-ut-2026 .grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
@media (min-width: 860px){
  .jhb-ut-2026 .grid-2{ grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr); gap: 28px; }
}

.jhb-ut-2026 .grid-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px){
  .jhb-ut-2026 .grid-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

/* Cards */
.jhb-ut-2026 .card{
  background: var(--jhb-card);
  border: 1px solid var(--jhb-border);
  border-radius: var(--jhb-radius-lg);
  box-shadow: 0 8px 18px rgba(0,0,0,.03);
  padding: 18px 18px 16px;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.jhb-ut-2026 .card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border-color: rgba(233,98,11,.18);
}
.jhb-ut-2026 .card p{ color: var(--jhb-muted); margin-bottom: 0; }

/* Highlight / quote */
.jhb-ut-2026 .highlight{
  background: #fce4d2;
  color: #7c3a06;
  border: 1px solid rgba(233,98,11,.12);
  border-radius: var(--jhb-radius-xl);
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  padding: 18px 18px;
  text-align: left;
  font-weight: 700;
}
.jhb-ut-2026 .quote{
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--jhb-radius-xl);
  box-shadow: var(--jhb-shadow);
  padding: 20px 20px 16px;
  text-align:left;
  position: relative;
  overflow:hidden;
}
.jhb-ut-2026 .quote:before{
  content:"„";
  position:absolute;
  top:-34px; left: 12px;
  font-size: 84px;
  color: rgba(0,0,0,.05);
  line-height: 1;
}
.jhb-ut-2026 .quote .qtext{
  margin: 0;
  font-weight: 800;
  color: #4a2809;
  font-size: 15px;
}
.jhb-ut-2026 .quote .qcap{
  margin-top: 10px;
  font-size: 13px;
  color: var(--jhb-muted);
}

/* Lists */
.jhb-ut-2026 .list{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

/* ✅ wichtig: höher spezifisch, damit mobile/theme-centering nicht gewinnt */
.jhb-ut-2026 .card .list{
  text-align: left;
  width: 100%;
}
.jhb-ut-2026 .card .list li{
  text-align: left;
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  color: var(--jhb-muted);
  font-size: 15px;
}
.jhb-ut-2026 .card .list li:before{
  content:"•";
  position:absolute;
  left: 6px;
  top: 0;
  color: var(--jhb-orange);
  font-size: 18px;
  line-height: 1;
}

.jhb-ut-2026 .chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 12px;
  justify-content:center;
  list-style:none;
  padding:0;
  margin: 12px 0 0;
}
.jhb-ut-2026 .chips li{
  border: 1px solid rgba(0,0,0,.05);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--jhb-muted);
  box-shadow: 0 6px 14px rgba(0,0,0,.04);
}

/* CTA */
.jhb-ut-2026 .cta{
  background:#fff;
  border:1px solid rgba(0,0,0,.04);
  border-radius:24px;
  box-shadow: 0 14px 32px rgba(0,0,0,.07);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.jhb-ut-2026 .cta .text h2{ margin:0 0 6px; font-size:20px; }
.jhb-ut-2026 .cta .text p{ margin:0; color: var(--jhb-muted); }

.jhb-ut-2026 .cta .actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

@media (min-width: 640px){
  .jhb-ut-2026 .cta .actions{
    grid-template-columns: 1fr 1fr;
  }
  .jhb-ut-2026 .cta .actions .btn-primary{
    grid-column: 1 / -1;
  }
  .jhb-ut-2026 .cta .actions .cta-link{
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px){
  .jhb-ut-2026 .cta{
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    align-items: center;
  }
  .jhb-ut-2026 .cta .actions{
    justify-self: end;
    width: 100%;
    max-width: 320px;
  }
}

.jhb-ut-2026 .cta .actions .btn{
  width: 100%;
  justify-content: center;
}

.jhb-ut-2026 .cta .actions .cta-link{
  display: inline-flex;
  justify-content: center;
  font-size: 13px;
  color: var(--jhb-muted);
  text-decoration: none;
  padding-top: 2px;
}
.jhb-ut-2026 .cta .actions .cta-link:hover{
  color: var(--jhb-orange);
  text-decoration: underline;
}

.jhb-ut-2026 .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
  white-space: nowrap;
  min-height: 40px;
}
.jhb-ut-2026 .btn-primary{
  background: var(--jhb-orange);
  color: #fff;
  border-color: var(--jhb-orange);
  box-shadow: 0 8px 18px rgba(233,98,11,.35);
}
.jhb-ut-2026 .btn-primary:hover{
  background: #ff7a20;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(233,98,11,.55);
  text-decoration:none;
}
.jhb-ut-2026 .btn-ghost{
  background: #fff;
  color: var(--jhb-orange);
  border-color: rgba(233,98,11,.35);
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}
.jhb-ut-2026 .btn-ghost:hover{
  background: rgba(233,98,11,.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  text-decoration:none;
}
@media (max-width: 859px){
  .jhb-ut-2026 .btn{ width: 100%; }
}

/* Mobile comfort */
@media (max-width: 600px){
  .jhb-ut-2026 .wrap{ padding: 0 12px; }
  .jhb-ut-2026 .card{ padding: 18px 16px; }
  .jhb-ut-2026 .highlight{ padding: 18px 16px; }
  .jhb-ut-2026 .quote{ padding: 18px 16px 14px; }
  .jhb-ut-2026 .section{ padding: 28px 0; }
  .jhb-ut-2026 .hero{ padding: 34px 0 18px; }
  .jhb-ut-2026 .hero-card{ padding: 22px 16px; border-radius: 22px; }
  .jhb-ut-2026 .pill{ font-size: 12px; }

  /* ✅ mobile: Bullets wirklich links, sauberer Abstand */
  .jhb-ut-2026 .card .list li{
    padding-left: 24px;
  }
  .jhb-ut-2026 .card .list li:before{
    left: 0;
  }
}
