/*
 * Verticus target stylesheet.
 * Loaded after style.css while we migrate page areas to a smaller component system.
 *
 * Redesign-Basis (2026-07-22): Tokens, Buttons, Cards und der Hero-Bereich
 * sind inzwischen final und direkt in style.css eingepflegt (siehe dessen
 * :root sowie .vtc-button/.vtc-header-cta/.vtc-home-hero-*). Was hier noch
 * steht, sind bewusste, dauerhaft geltende Ausnahmen fuer einzelne Bereiche
 * (z.B. #vtc-audience-entry), die die geteilte Basisregel nicht global
 * aendern sollen, plus das noch nicht auf reale Templates uebertragene
 * Zielsystem (.vtc-section/.vtc-card/.vtc-btn/...), das von den
 * Grounding-Seiten (page-pkv-*.php) bereits produktiv genutzt wird.
 */

/* ---------- Design tokens (fuer das Grounding-/Zielsystem unten) ---------- */
:root {
  --vtc-c-blue: #075bd8;
  --vtc-c-blue-dark: #082b63;
  --vtc-c-ink: #061936;
  --vtc-c-text: #263c5b;
  --vtc-c-muted: #405879;
  --vtc-c-line: #d9e7f8;
  --vtc-c-soft: #eaf3ff;
  --vtc-c-bg: #f7faff;
  --vtc-c-white: #fff;
  --vtc-c-warn: #d8a23a;
  --vtc-shadow-card: 0 12px 30px rgba(7, 43, 99, .06);
  --vtc-shadow-panel: 0 18px 48px rgba(7, 43, 99, .08);
  --vtc-wrap: 1180px;
}

/* ---------- Target components ---------- */
.vtc-section {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
}

.vtc-section--divided {
  border-bottom: 1px solid var(--vtc-c-line);
}

.vtc-section-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vtc-eyebrow {
  margin: 0 0 .85rem;
  color: var(--vtc-c-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vtc-card {
  border: 1px solid var(--vtc-c-line);
  border-radius: var(--vtc-radius);
  background: var(--vtc-c-white);
  box-shadow: var(--vtc-shadow-card);
}

.vtc-card__title {
  color: var(--vtc-c-ink);
  font-weight: 900;
  line-height: 1.25;
}

.vtc-card__text {
  color: var(--vtc-c-muted);
  line-height: 1.6;
}

.vtc-grid {
  display: grid;
  gap: 1rem;
}

.vtc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vtc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.vtc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--vtc-radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.vtc-btn--primary {
  border-color: var(--vtc-c-blue);
  background: var(--vtc-c-blue);
  color: var(--vtc-c-white);
  box-shadow: 0 14px 28px rgba(7, 91, 216, .18);
}

.vtc-btn--primary:hover {
  border-color: var(--vtc-c-ink);
  background: var(--vtc-c-ink);
  color: var(--vtc-c-white);
}

.vtc-btn--outline {
  border-color: rgba(7, 91, 216, .35);
  background: var(--vtc-c-white);
  color: var(--vtc-c-blue);
}

.vtc-btn--outline:hover {
  border-color: var(--vtc-c-blue);
  background: var(--vtc-c-soft);
  color: var(--vtc-c-ink);
}

.vtc-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--vtc-c-line);
  border-left: 5px solid var(--vtc-c-blue);
  border-radius: var(--vtc-radius);
  background: var(--vtc-c-white);
  color: var(--vtc-c-text);
  line-height: 1.62;
}

.vtc-callout--warn { border-left-color: var(--vtc-c-warn); }

.vtc-table {
  width: 100%;
  margin: 1.35rem 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--vtc-c-line);
  border-radius: var(--vtc-radius);
  background: var(--vtc-c-white);
}

.vtc-table th,
.vtc-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--vtc-c-line);
  color: var(--vtc-c-text);
  vertical-align: top;
}

.vtc-table th {
  background: #eef6ff;
  color: var(--vtc-c-ink);
  font-weight: 900;
}

.vtc-table tr:last-child td { border-bottom: 0; }

.vtc-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.vtc-list li {
  position: relative;
  padding: .85rem 1rem .85rem 2.45rem;
  border: 1px solid var(--vtc-c-line);
  border-radius: var(--vtc-radius);
  background: var(--vtc-c-white);
  color: var(--vtc-c-text);
}

.vtc-list li::before {
  position: absolute;
  left: .95rem;
  top: .85rem;
  font-weight: 900;
}

.vtc-list--check li::before {
  content: "\2713";
  color: var(--vtc-c-blue);
}

.vtc-list--cross li::before {
  content: "\00d7";
  color: #b42318;
}

.vtc-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 2.75rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(160, 183, 214, .62);
  border-left: 5px solid var(--vtc-c-blue);
  border-radius: var(--vtc-radius);
  background: linear-gradient(135deg, #fff 0%, #f4f8fe 100%);
  color: var(--vtc-c-ink);
  box-shadow: var(--vtc-shadow-panel);
}

.vtc-cta h2,
.vtc-cta p {
  max-width: 760px;
}

.vtc-cta p {
  margin: 0;
  color: var(--vtc-c-muted);
}

@media (max-width: 991.98px) {
  .vtc-grid--3,
  .vtc-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .vtc-section-head {
    grid-template-columns: 1fr;
  }

  .vtc-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .vtc-table {
    display: block;
    overflow-x: auto;
    table-layout: fixed;
    font-size: .82rem;
    -webkit-overflow-scrolling: touch;
  }

  .vtc-table th,
  .vtc-table td {
    padding: .65rem .55rem;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

/* ---------- Legacy bridge: Grounding pilot ---------- *//* ---------- Grounding pages ---------- */
.vtc-grounding {
  --ground-blue: #075bd8;
  --ground-blue-dark: #082b63;
  --ground-blue-ink: #061936;
  --ground-blue-soft: #eaf3ff;
  --ground-bg: #f7faff;
  --ground-line: #d9e7f8;
  color: var(--ground-blue-ink);
  background: var(--ground-bg);
  overflow-x: clip;
}

.vtc-grounding-topline { display: none; }

.vtc-grounding-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-right: .65rem;
  padding: .15rem .7rem;
  border-radius: 999px;
  background: var(--ground-blue-soft);
  color: var(--ground-blue);
  font-size: .75rem;
  font-weight: 900;
}

.vtc-grounding-hero {
  position: relative;
  padding: clamp(1.8rem, 3.5vw, 3rem) 0 clamp(2.4rem, 4.5vw, 3.6rem);
  border-bottom: 1px solid var(--ground-line);
  background: linear-gradient(110deg, #fff 0%, #f8fbff 58%, #eef6ff 100%);
  color: var(--ground-blue-ink);
  overflow: hidden;
}

.vtc-grounding-breadcrumb {
  display: flex;
  gap: .45rem;
  margin-bottom: 1.8rem;
  color: #5b7290;
  font-size: .9rem;
  font-weight: 700;
}

.vtc-grounding-breadcrumb a {
  color: var(--ground-blue-dark);
  text-decoration: none;
}

.vtc-grounding-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .78fr);
  gap: clamp(2rem, 4.5vw, 4.4rem);
  align-items: center;
}

.vtc-grounding-hero__copy,
.vtc-grounding-hero h1,
.vtc-grounding-eyebrow,
.vtc-grounding-lede {
  min-width: 0;
}

.vtc-grounding-eyebrow {
  margin: 0 0 .85rem;
  color: var(--ground-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vtc-grounding-hero h1 {
  max-width: 760px;
  margin: 0 0 1.1rem;
  color: var(--ground-blue-ink);
  font-size: clamp(2.25rem, 4.05vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.vtc-grounding-lede {
  max-width: 690px;
  margin: 0;
  color: #263c5b;
  font-size: 1.04rem;
  line-height: 1.7;
}

.vtc-grounding-actions,
.vtc-grounding-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.vtc-grounding-actions { margin-top: 1.7rem; }

.vtc-grounding-actions .btn,
.vtc-grounding .vtc-grounding-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.vtc-grounding-actions .btn {
  min-height: 52px;
  gap: .55rem;
  padding: .9rem 1.35rem;
}

.vtc-grounding-actions .btn-primary,
.vtc-grounding .vtc-grounding-cta .btn-light {
  border: 1px solid var(--ground-blue);
  background: var(--ground-blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 91, 216, .18);
}

.vtc-grounding-actions .btn-primary:hover,
.vtc-grounding .vtc-grounding-cta .btn-light:hover {
  border-color: var(--ground-blue-ink);
  background: var(--ground-blue-ink);
  color: #fff;
}

.vtc-grounding-actions .btn-outline-light {
  border-color: transparent;
  background: transparent;
  color: var(--ground-blue);
  box-shadow: none;
}

.vtc-grounding-actions .btn-outline-light:hover,
.vtc-grounding .vtc-grounding-cta .btn-outline-light:hover {
  border-color: var(--ground-blue);
  background: var(--ground-blue-soft);
  color: var(--ground-blue-ink);
}

.vtc-grounding-hero__visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vtc-jaeg-card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  padding: 1.55rem 1.45rem 1.35rem;
  border: 1px solid rgba(160, 183, 214, .46);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(8, 43, 99, .16);
  backdrop-filter: blur(10px);
}

.vtc-jaeg-card__title {
  margin: 0 0 .75rem;
  color: var(--ground-blue-ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vtc-jaeg-card__intro {
  margin: 0;
  color: #405879;
  font-size: .94rem;
  font-weight: 700;
}

.vtc-jaeg-card__amount {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .65rem;
  align-items: baseline;
  margin: .25rem 0 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--ground-line);
}

.vtc-jaeg-card__amount strong {
  color: var(--ground-blue);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
}

.vtc-jaeg-card__amount span,
.vtc-jaeg-card__facts span {
  color: #5b7290;
  font-size: .78rem;
  font-weight: 800;
}

.vtc-jaeg-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.vtc-jaeg-card__facts div {
  min-width: 0;
  padding: .25rem .82rem 0;
  border-left: 1px solid var(--ground-line);
}

.vtc-jaeg-card__facts div:first-child { border-left: 0; }

.vtc-jaeg-card__facts span,
.vtc-jaeg-card__facts strong {
  display: block;
}

.vtc-jaeg-card__facts strong {
  margin-top: .32rem;
  color: var(--ground-blue);
  font-size: .93rem;
  line-height: 1.28;
}

.vtc-jaeg-card__note {
  margin: .9rem 0 0;
  color: #405879;
  font-size: .86rem;
  line-height: 1.5;
}

.vtc-grounding-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  min-width: 0;
  max-width: 100%;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow-x: clip;
}

.vtc-grounding-toc {
  position: sticky;
  top: 1.25rem;
  align-self: start;
  min-width: 0;
  max-width: 100%;
}

.vtc-grounding-toc p {
  margin: 0 0 .8rem;
  color: #5b7290;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vtc-grounding-toc a {
  display: block;
  padding: .43rem 0 .43rem .8rem;
  border-left: 2px solid var(--ground-line);
  color: #405879;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}

.vtc-grounding-toc a:hover {
  border-left-color: var(--ground-blue);
  color: var(--ground-blue);
}

.vtc-grounding-content {
  min-width: 0;
  max-width: 920px;
  overflow-x: clip;
}

.vtc-grounding-section,
.vtc-grounding-related {
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid var(--ground-line);
}

.vtc-grounding-section { scroll-margin-top: 1rem; }

.vtc-section-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vtc-section-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--ground-blue-soft);
  color: var(--ground-blue);
  font-weight: 900;
}

.vtc-grounding-section h2,
.vtc-grounding-cta h2,
.vtc-grounding-related h2 {
  margin: 0 0 .35rem;
  color: var(--ground-blue-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.vtc-section-head p,
.vtc-grounding-section > p,
.vtc-grounding-cta p,
.vtc-faq-list p,
.vtc-grounding .insurer-card p,
.vtc-grounding .vtc-muted-note,
.vtc-grounding .vtc-grounding-disclaimer {
  color: #405879;
  line-height: 1.68;
}

.vtc-grounding .stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .95rem;
  margin: 1.35rem 0;
}

.vtc-grounding .stat-box,
.vtc-grounding .insurer-card,
.vtc-faq-list details {
  border: 1px solid var(--ground-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 43, 99, .06);
}

.vtc-grounding .stat-box { padding: 1.1rem; }

.vtc-grounding .stat-box .num {
  display: block;
  color: var(--ground-blue);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.15;
}

.vtc-grounding .stat-box .cap {
  display: block;
  margin-top: .45rem;
  color: #405879;
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 650;
}

.vtc-grounding .info-table {
  width: 100%;
  margin: 1.35rem 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--ground-line);
  border-radius: 8px;
  background: #fff;
}

.vtc-grounding .info-table th,
.vtc-grounding .info-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--ground-line);
  color: #263c5b;
  vertical-align: top;
}

.vtc-grounding .info-table th {
  background: #eef6ff;
  color: var(--ground-blue-ink);
  font-weight: 900;
}

.vtc-grounding .info-table tr:last-child td { border-bottom: 0; }

.vtc-grounding .callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--ground-line);
  border-left: 5px solid var(--ground-blue);
  border-radius: 8px;
  background: #fff;
  color: #263c5b;
  line-height: 1.62;
}



.vtc-grounding .callout-label {
  display: block;
  margin-bottom: .35rem;
  color: var(--ground-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}



.vtc-grounding .check-list,
.vtc-grounding .cross-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.vtc-grounding .check-list li,
.vtc-grounding .cross-list li {
  position: relative;
  padding: .85rem 1rem .85rem 2.45rem;
  border: 1px solid var(--ground-line);
  border-radius: 8px;
  background: #fff;
  color: #263c5b;
}

.vtc-grounding .check-list li::before,
.vtc-grounding .cross-list li::before {
  position: absolute;
  left: .95rem;
  top: .85rem;
  font-weight: 900;
}

.vtc-grounding .check-list li::before {
  content: "\2713";
  color: var(--ground-blue);
}

.vtc-grounding .cross-list li::before {
  content: "\00d7";
  color: #b42318;
}

.vtc-grounding .insurer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 1rem;
}

.vtc-grounding .insurer-card { padding: 1.15rem; }

.vtc-grounding .insurer-card .tag {
  display: inline-flex;
  margin-bottom: .7rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--ground-blue-soft);
  color: var(--ground-blue);
  font-size: .72rem;
  font-weight: 900;
}

.vtc-grounding .insurer-card .name {
  color: var(--ground-blue-ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.vtc-grounding .vtc-muted-note { font-size: .92rem; }

.vtc-faq-list {
  display: grid;
  gap: .8rem;
}

.vtc-faq-list details { padding: 1rem 1.15rem; }

.vtc-faq-list summary {
  cursor: pointer;
  color: var(--ground-blue-ink);
  font-weight: 850;
}

.vtc-faq-list p { margin: .75rem 0 0; }

.vtc-grounding .vtc-grounding-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
  align-items: start;
  margin-top: 2.75rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(160, 183, 214, .62);
  border-left: 5px solid var(--ground-blue);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f4f8fe 100%);
  color: var(--ground-blue-ink);
  box-shadow: 0 18px 48px rgba(7, 43, 99, .08);
}

.vtc-grounding .vtc-grounding-cta h2,
.vtc-grounding .vtc-grounding-cta p {
  max-width: 760px;
}

.vtc-grounding .vtc-grounding-cta h2 { color: var(--ground-blue-ink); }
.vtc-grounding .vtc-grounding-cta p { margin: 0; }
.vtc-grounding .vtc-grounding-cta__actions { justify-content: flex-start; }

.vtc-grounding .vtc-grounding-cta .btn {
  min-height: 46px;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
}

.vtc-grounding .vtc-grounding-cta .btn-outline-light {
  border-color: rgba(7, 91, 216, .35);
  background: #fff;
  color: var(--ground-blue);
}

.vtc-grounding-related .vtc-insights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vtc-grounding-related .vtc-insight-card__body {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: .85rem;
}

.vtc-grounding-related .vtc-insight-card__icon {
  width: 42px;
  height: 42px;
}

.vtc-grounding-related .vtc-insight-card__meta {
  flex-wrap: wrap;
}

.vtc-grounding .vtc-grounding-disclaimer {
  margin: 1.75rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ground-line);
  font-size: .88rem;
}

@media (max-width: 991.98px) {
  .vtc-grounding-hero__grid,
  .vtc-grounding-layout {
    grid-template-columns: 1fr;
  }

  .vtc-grounding-toc {
    position: static;
    contain: inline-size;
    display: flex;
    width: 100%;
    gap: .55rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-bottom: .35rem;
  }

  .vtc-grounding-toc p { display: none; }

  .vtc-grounding-toc a {
    flex: 0 0 auto;
    padding: .5rem .75rem;
    border: 1px solid var(--ground-line);
    border-radius: 999px;
    background: #fff;
  }

  .vtc-grounding .insurer-grid { grid-template-columns: 1fr; }
  .vtc-grounding-related .vtc-insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .vtc-grounding-hero {
    padding-top: 1.6rem;
    padding-bottom: 2.2rem;
  }

  .vtc-grounding-hero__copy,
  .vtc-grounding-hero h1,
  .vtc-grounding-eyebrow,
  .vtc-grounding-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .vtc-grounding-eyebrow {
    font-size: .68rem;
    line-height: 1.35;
    white-space: normal;
  }

  .vtc-grounding-hero h1 {
    font-size: clamp(1.82rem, 7.2vw, 2.08rem);
    line-height: 1.12;
  }

  .vtc-grounding-lede { font-size: .98rem; }

  .vtc-grounding-actions .btn,
  .vtc-grounding-cta__actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .vtc-grounding-hero__visual {
    display: none;
    min-height: 0;
    margin-top: 0;
  }

  .vtc-section-head { grid-template-columns: 1fr; }

  .vtc-grounding .info-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    table-layout: fixed;
    font-size: .82rem;
    -webkit-overflow-scrolling: touch;
  }

  .vtc-grounding .info-table th,
  .vtc-grounding .info-table td {
    padding: .65rem .55rem;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .vtc-grounding .vtc-grounding-cta { padding: 1.25rem; }

  .vtc-grounding .vtc-grounding-cta__actions,
  .vtc-grounding-related .vtc-insights-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vtc-grounding-related .vtc-insights-heading { align-items: flex-start; }
}

/* ---------- Grounding containment fix ---------- */
.vtc-grounding .container,
.vtc-grounding-hero > .container,
.vtc-grounding-layout.container {
  width: 100%;
  max-width: var(--vtc-wrap);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.vtc-grounding *,
.vtc-grounding *::before,
.vtc-grounding *::after {
  box-sizing: border-box;
}

.vtc-grounding-hero__grid,
.vtc-grounding-layout,
.vtc-grounding-content,
.vtc-grounding .stat-row,
.vtc-grounding .insurer-grid,
.vtc-grounding-related .vtc-insights-grid {
  min-width: 0;
  max-width: 100%;
}

.vtc-grounding-content {
  width: 100%;
}

.vtc-grounding-hero h1,
.vtc-grounding-section h2,
.vtc-grounding .stat-box,
.vtc-grounding .insurer-card,
.vtc-grounding-toc a {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 1199.98px) {
  .vtc-grounding-hero__grid,
  .vtc-grounding-layout {
    grid-template-columns: 1fr;
  }

  .vtc-grounding-content {
    max-width: 100%;
  }

  .vtc-grounding-toc {
    position: static;
    contain: inline-size;
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: .55rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-bottom: .35rem;
  }

  .vtc-grounding-toc p { display: none; }

  .vtc-grounding-toc a {
    flex: 0 0 auto;
    padding: .5rem .75rem;
    border: 1px solid var(--ground-line);
    border-radius: 999px;
    background: #fff;
    white-space: nowrap;
  }

  .vtc-grounding .insurer-grid {
    grid-template-columns: 1fr;
  }
}

/*
 * Bugfix: die 3 Zielgruppen-Karten ("Welcher Einstieg passt zu Ihnen?")
 * liefen durch das generische 2-spaltige --compact Grid und brachen in
 * 2+1 um. Die Vorlage zeigt sie sauber nebeneinander in einer Reihe.
 */
#vtc-audience-entry .vtc-help-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991.98px) {
  #vtc-audience-entry .vtc-help-grid--compact {
    grid-template-columns: 1fr;
  }
}

/* ---------- Redesign-Basis: Zielgruppen-Karten (Icon oben, mittig) ---------- */
/*
 * .vtc-help-card--compact ist fuer ein 2-spaltiges Grid gebaut (154px
 * Icon-Spalte + Rest-Text). Im jetzt 3-spaltigen #vtc-audience-entry
 * Grid sind die Karten schmaler, wodurch die Text-Spalte auf ~160px
 * schrumpft und in Einzelwoertern umbricht. Statt Icon links wird das
 * Icon hier oben, zentriert dargestellt, Text darunter volle Breite.
 */
#vtc-audience-entry .vtc-help-card--compact {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.85rem 1.6rem 1.6rem;
}

#vtc-audience-entry .vtc-help-card__illustration {
  align-self: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--vtc-soft-2);
  box-shadow: none;
}

#vtc-audience-entry .vtc-help-card__illustration::after {
  content: none;
}

#vtc-audience-entry .vtc-help-card__illustration .vtc-icon {
  width: 1.8rem;
  height: 1.8rem;
  stroke-width: 1.9;
}

#vtc-audience-entry .vtc-help-card--compact .vtc-help-card__icon {
  display: none;
}

#vtc-audience-entry .vtc-help-card__content {
  text-align: center;
}

#vtc-audience-entry .vtc-help-card--compact .vtc-help-card__title,
#vtc-audience-entry .vtc-help-card--compact .vtc-help-card__question,
#vtc-audience-entry .vtc-help-card--compact .vtc-help-card__text {
  max-width: 100%;
}

#vtc-audience-entry .vtc-help-card--compact .vtc-help-card__link {
  align-self: center;
  margin-top: auto;
}