:root {
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Roboto", "Segoe UI", Arial, sans-serif;
  --page-bg: #f6f4ef;
  --page-ink: #101521;
  --muted: #59616f;
  --surface: #fffdfa;
  --surface-alt: #eef3f2;
  --line: #d7dbe1;
  --accent: #405f83;
  --accent-dark: #2c344c;
  --accent-warm: #ef7a1a;
  --accent-cool: #167876;
  --accent-violet: #39208a;
  --hero-overlay: linear-gradient(90deg, rgba(13, 18, 31, 0.86), rgba(13, 18, 31, 0.64) 46%, rgba(13, 18, 31, 0.12));
  --shadow: 0 18px 42px rgba(16, 21, 33, 0.11);
  --radius-card: 8px;
  --radius-control: 6px;
  --content-width: 1160px;
}

body[data-theme="aufbruch"] {
  --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --page-bg: #0b1630;
  --page-ink: #eef3ff;
  --muted: #a9b7d0;
  --surface: #111f3d;
  --surface-alt: #162a55;
  --line: #111827;
  --accent: #5d7cff;
  --accent-dark: #08122a;
  --accent-warm: #ff6b21;
  --accent-cool: #405f83;
  --accent-violet: #6b3cff;
  --hero-overlay: linear-gradient(90deg, rgba(4, 10, 25, 0.92), rgba(18, 38, 86, 0.76) 48%, rgba(255, 107, 33, 0.16));
}

body[data-theme="signal"] {
  /* Fonts intentionally inherit from :root (Republik default: Oswald display, Roboto body). */
  --page-bg: #07111f;
  --page-ink: #eef7fb;
  --muted: #a8bac5;
  --surface: #0f1b2d;
  --surface-alt: #0a1727;
  --line: #25445b;
  --accent: #147d8a;
  --accent-dark: #061322;
  --accent-warm: #f47a21;
  --accent-cool: #405f83;
  --accent-violet: #39208a;
  --hero-overlay: linear-gradient(90deg, rgba(5, 12, 23, 0.92), rgba(5, 29, 38, 0.7) 48%, rgba(5, 29, 38, 0.18));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--page-ink);
  background:
    /* Tinted overlay keeps text legible — adjust alpha to taste. */
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0, rgba(246, 244, 239, 0.93) 21rem, rgba(238, 243, 242, 0.94) 100%),
    /* Default backdrop image visible on every page below the overlay. */
    url('../images/hero-default.png') center / cover fixed no-repeat;
  background-color: var(--page-bg);
}

body[data-theme="aufbruch"] {
  background:
    radial-gradient(circle at 78% 8rem, rgba(255, 107, 33, 0.24), transparent 20rem),
    radial-gradient(circle at 20% 18rem, rgba(93, 124, 255, 0.2), transparent 23rem),
    linear-gradient(135deg, rgba(8, 18, 42, 0.93) 0 30%, rgba(11, 22, 48, 0.95) 30% 58%, rgba(22, 42, 85, 0.93) 58% 100%),
    url('../images/hero-default.png') center / cover fixed no-repeat;
}

body[data-theme="signal"] {
  background:
    radial-gradient(circle at 20% 8rem, rgba(20, 125, 138, 0.26), transparent 26rem),
    linear-gradient(180deg, rgba(7, 17, 31, 0.92) 0, rgba(9, 22, 38, 0.94) 22rem, rgba(10, 23, 39, 0.96) 100%),
    url('../images/hero-default.png') center / cover fixed no-repeat;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(239, 122, 26, 0.55);
  outline-offset: 3px;
}

.ambient {
  display: none;
}

.site-header,
.site-footer,
main > section:not(.future-hero) {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 5.2rem;
  padding: 0.9rem 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

body[data-theme="aufbruch"] .site-header {
  background: rgba(8, 18, 42, 0.92);
  border-bottom-color: rgba(93, 124, 255, 0.38);
}

body[data-theme="signal"] .site-header {
  background: rgba(7, 17, 31, 0.9);
}

.site-header-compact {
  padding-bottom: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 3.25rem;
  padding: 0.24rem;
  background: #ffffff;
  border: 1px solid rgba(64, 95, 131, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(16, 21, 33, 0.07);
}

.brand-logo {
  width: 3.55rem;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

body[data-theme="signal"] .brand-copy strong,
body[data-theme="signal"] .primary-nav a,
body[data-theme="signal"] .site-footer nav a {
  color: #eef7fb;
}

body[data-theme="aufbruch"] .brand-copy strong,
body[data-theme="aufbruch"] .primary-nav a,
body[data-theme="aufbruch"] .site-footer nav a {
  color: #eef3ff;
}

.primary-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.primary-nav a,
.site-footer nav a {
  border-radius: var(--radius-control);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.52rem 0.65rem;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.site-footer nav a:hover {
  background: rgba(64, 95, 131, 0.08);
}

body[data-theme="signal"] .primary-nav a:hover,
body[data-theme="signal"] .site-footer nav a:hover {
  background: rgba(20, 125, 138, 0.18);
}

body[data-theme="aufbruch"] .primary-nav a:hover,
body[data-theme="aufbruch"] .site-footer nav a:hover {
  background: rgba(93, 124, 255, 0.18);
}

.primary-nav .nav-cta {
  background: var(--accent-dark);
  color: #ffffff;
}

main {
  display: grid;
}

.future-hero {
  position: relative;
  display: grid;
  min-height: 44rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

body[data-theme="aufbruch"] .hero-image {
  filter: saturate(1.18) contrast(1.08);
}

body[data-theme="aufbruch"] .future-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  z-index: 1;
  width: 34rem;
  height: 22rem;
  background: rgba(255, 107, 33, 0.86);
  clip-path: polygon(16% 0, 100% 0, 82% 100%, 0 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

body[data-theme="signal"] .hero-image {
  filter: saturate(0.72) contrast(1.12) hue-rotate(14deg);
}

.hero-overlay {
  background: var(--hero-overlay);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero-copy {
  max-width: var(--content-width);
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.future-hero .eyebrow {
  color: #f6ad68;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  font-size: 5rem;
  text-transform: uppercase;
}

/* Hero H1: slightly smaller than the global 5rem to fit three slogan lines
   (separated by <br>) inside the content-width container without overflow. */
.future-hero h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  line-height: 1.68;
}

.lead {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.1rem;
  border-radius: var(--radius-control);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.theme-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-warm);
  border: 1px solid var(--accent-warm);
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.theme-switcher {
  position: fixed;
  top: 5.75rem;
  right: 0.75rem;
  z-index: 30;
  display: grid;
  gap: 0.18rem;
  width: 4.3rem;
}

.theme-button {
  display: grid;
  grid-template-columns: 0.68rem 1fr;
  gap: 0.18rem;
  align-items: center;
  min-height: 1.1rem;
  padding: 0.12rem 0.16rem;
  appearance: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-card);
  color: #172033;
  cursor: pointer;
  font: inherit;
  font-size: 0.5rem;
  font-weight: 800;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.theme-button.is-active {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 2px rgba(239, 122, 26, 0.22);
}

.theme-button:hover {
  background: #ffffff;
  border-color: var(--accent-warm);
  box-shadow: 0 12px 28px rgba(16, 21, 33, 0.16);
}

body[data-theme="signal"] .theme-button {
  background: rgba(238, 247, 251, 0.92);
}

.theme-swatch {
  display: block;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: var(--radius-control);
  border: 1px solid rgba(16, 21, 33, 0.16);
}

.swatch-republik {
  background: linear-gradient(135deg, #2c344c 0 40%, #405f83 40% 70%, #ef7a1a 70%);
}

.swatch-aufbruch {
  background: linear-gradient(135deg, #08122a 0 38%, #5d7cff 38% 68%, #ff6b21 68%);
}

.swatch-signal {
  background: linear-gradient(135deg, #10243b 0 40%, #147d8a 40% 70%, #f47a21 70%);
}

/* Voice swatches reuse the .theme-swatch frame but mark by intensity rather
   than color — solid filled for the warm/activating voice, soft outlined for
   the calmer/reflective voice. */
.swatch-voice-warm {
  background: radial-gradient(circle at 40% 35%, #ffb583 0 35%, var(--accent-warm) 36%);
}
.swatch-voice-calm {
  background: #ffffff;
  border: 2px solid var(--accent);
}

/* Voice-row separator inside the shared switcher — gives the two axes a tiny
   visual break without adding labels. */
.theme-switcher .voice-button:first-of-type {
  margin-top: 0.32rem;
  position: relative;
}
.theme-switcher .voice-button:first-of-type::before {
  content: "";
  position: absolute;
  inset: -0.18rem 0.1rem auto 0.1rem;
  height: 1px;
  background: rgba(64, 95, 131, 0.22);
}

/* Voice swap: only one body-block is visible at a time. */
.station-body[data-voice] { display: contents; }
body[data-voice="brandt-schaefer"] .station-body[data-voice="brandt-schulz"],
body[data-voice="brandt-schulz"]   .station-body[data-voice="brandt-schaefer"] {
  display: none;
}

.intro-band,
.values-section,
.feature-section,
.topic-section,
.article-section,
.theme-section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.intro-grid,
.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.82fr);
  gap: 3rem;
  align-items: start;
}

body[data-theme="aufbruch"] .feature-section {
  align-items: center;
}

body[data-theme="aufbruch"] .section-kicker,
body[data-theme="aufbruch"] .eyebrow,
body[data-theme="aufbruch"] .mini-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0.45rem;
  background: var(--accent-dark);
  color: #ffffff;
}

body[data-theme="signal"] .feature-section {
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1fr);
}

body[data-theme="signal"] .feature-copy {
  order: 2;
}

body[data-theme="signal"] .image-panel {
  order: 1;
}

.intro-copy p:first-child {
  margin-top: 0;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1rem 0 1rem 1.2rem;
  border-left: 5px solid var(--accent-warm);
  color: var(--accent-dark);
}

blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.25;
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-style: normal;
}

body[data-theme="aufbruch"] blockquote {
  background: rgba(93, 124, 255, 0.14);
  color: #eef3ff;
  border-left-color: var(--accent-warm);
  padding-right: 1rem;
}

body[data-theme="signal"] blockquote {
  background: rgba(20, 125, 138, 0.12);
  color: #eef7fb;
  padding-right: 1rem;
}

.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
/* .section-head-wide kept as a semantic class in markup; styles now identical
   to .section-head since the parent container constrains the width. */

.value-grid,
.topic-grid,
.theme-grid {
  display: grid;
  gap: 0.9rem;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-theme="aufbruch"] .topic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-theme="signal"] .topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.media-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

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

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

.value-card,
.topic-card,
.article-card,
.theme-card,
.media-card,
.team-card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px rgba(16, 21, 33, 0.06);
}

.value-card,
.topic-card,
.theme-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.value-card {
  min-height: 15rem;
}

body[data-theme="aufbruch"] .value-card,
body[data-theme="aufbruch"] .topic-card,
body[data-theme="aufbruch"] .article-card,
body[data-theme="aufbruch"] .theme-card,
body[data-theme="aufbruch"] .media-card,
body[data-theme="aufbruch"] .team-card {
  border: 2px solid rgba(93, 124, 255, 0.62);
  box-shadow: 8px 8px 0 rgba(255, 107, 33, 0.38);
}

body[data-theme="signal"] .value-card,
body[data-theme="signal"] .topic-card,
body[data-theme="signal"] .article-card,
body[data-theme="signal"] .theme-card,
body[data-theme="signal"] .media-card,
body[data-theme="signal"] .team-card,
body[data-theme="signal"] .panel {
  box-shadow: 0 0 0 1px rgba(20, 125, 138, 0.12), 0 18px 44px rgba(0, 0, 0, 0.28);
}

body[data-theme="signal"] .value-card,
body[data-theme="signal"] .topic-card,
body[data-theme="signal"] .article-card,
body[data-theme="signal"] .theme-card,
body[data-theme="signal"] .media-card,
body[data-theme="signal"] .team-card {
  border-top: 1px solid rgba(20, 125, 138, 0.58);
}

.value-card span,
.topic-index {
  color: var(--accent-warm);
  font-family: var(--font-display);
  font-weight: 800;
}

.value-card h3,
.topic-card strong,
.theme-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.value-card p,
.topic-card p,
.theme-card p {
  margin: 0;
  color: var(--muted);
}

.feature-copy {
  align-self: center;
}

.feature-copy p {
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.image-panel {
  position: relative;
  min-height: 28rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.image-panel img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-card {
  grid-template-rows: auto auto 1fr;
  min-height: 12rem;
  text-decoration: none;
}

.topic-card:hover {
  border-color: rgba(64, 95, 131, 0.55);
  box-shadow: 0 14px 30px rgba(16, 21, 33, 0.09);
}

.topic-card-accent {
  background:
    linear-gradient(135deg, rgba(64, 95, 131, 0.12), transparent 52%),
    var(--surface);
  border-top: 5px solid var(--accent);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 1rem;
}

body[data-theme="aufbruch"] .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-theme="signal"] .article-grid {
  grid-template-columns: minmax(0, 1fr);
}

.article-card {
  display: grid;
  gap: 0.8rem;
  min-height: 15rem;
  padding: 1.1rem;
}

.media-card,
.team-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
}

.media-card img,
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 2px);
}

.team-card h3,
.media-card h3 {
  font-size: 1.45rem;
}

.media-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
}

.quote {
  color: var(--page-ink);
  font-style: italic;
}

.article-card-featured {
  grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}

body[data-theme="aufbruch"] .article-card-featured {
  grid-template-columns: 1fr;
}

body[data-theme="aufbruch"] .article-card-featured img {
  aspect-ratio: 4 / 3;
}

body[data-theme="signal"] .article-card-featured {
  grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1fr);
}

.article-card-featured div {
  display: grid;
  align-content: center;
  gap: 0.55rem;
  padding: 1.1rem;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.theme-card {
  min-height: 20rem;
}

.theme-card.is-active {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 2px rgba(239, 122, 26, 0.16), 0 10px 28px rgba(16, 21, 33, 0.08);
}

.theme-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.theme-card div {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.theme-card dt {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.theme-card dd {
  margin: 0;
  color: var(--page-ink);
  line-height: 1.45;
}

.membership-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.3rem;
  padding: 1.5rem;
  background: var(--accent-dark);
  border: 1px solid rgba(44, 52, 76, 0.6);
  border-radius: var(--radius-card);
  color: #ffffff;
}

.membership-panel .eyebrow {
  color: #f7b174;
}

.membership-panel h2 {
  font-size: 2.45rem;
}

.membership-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.membership-panel .button-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--accent-dark);
  white-space: nowrap;
}

body[data-theme="aufbruch"] .membership-panel {
  background:
    linear-gradient(135deg, rgba(93, 124, 255, 0.28), transparent 42%),
    #08122a;
  border: 2px solid var(--accent-warm);
  box-shadow: 8px 8px 0 rgba(255, 107, 33, 0.5);
}

body[data-theme="signal"] .membership-panel {
  background:
    linear-gradient(135deg, rgba(20, 125, 138, 0.28), transparent 42%),
    #061322;
  border-color: rgba(20, 125, 138, 0.48);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.4rem;
  row-gap: 0.45rem;
  align-items: center;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid var(--line);
}
/* Logo block sits on the left, spans both rows. */
.site-footer .footer-brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
/* Row 1, right column: contact / social links centered in the remaining space. */
.site-footer .footer-social {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
/* Row 2, right column: legal / archive links right-aligned. */
.site-footer .footer-aux {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}
.site-footer .footer-aux a {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: none;
  padding: 0.4rem 0.5rem;
}
.site-footer .footer-aux a:hover { color: var(--page-ink); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-brand-frame {
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 3.25rem;
  padding: 0.24rem;
  background: #ffffff;
  border: 1px solid rgba(64, 95, 131, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(16, 21, 33, 0.07);
}

.footer-brand-frame img {
  width: 3.55rem;
  height: auto;
}

.footer-brand-copy {
  display: grid;
  gap: 0.1rem;
}

.footer-brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand-copy > span {
  color: var(--muted);
  font-size: 0.85rem;
}

.panel {
  position: relative;
  overflow: hidden;
}

.topic-layout {
  display: grid;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.topic-hero {
  padding: 2rem;
}

.topic-hero h1 {
  font-size: 4rem;
}

.topic-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
  gap: 1rem;
}

.topic-main,
.topic-rail .panel {
  padding: 1.4rem;
}

.topic-main h2 {
  font-size: 2.45rem;
}

.topic-main h3 {
  margin-top: 1.7rem;
}


.source-content {
  display: grid;
  gap: 1.4rem;
}

.source-figure {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.source-figure img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  background: rgba(64, 95, 131, 0.05);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-card) - 2px);
}

.source-figure figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.source-section {
  display: grid;
  gap: 0.8rem;
}

.source-section + .source-section {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.source-section h2 {
  font-size: 1.85rem;
}

.source-section p {
  margin: 0;
}

.source-list,
.source-meta-list,
.source-jump-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.65;
}

.source-meta-list {
  list-style: none;
  padding-left: 0;
}

.source-jump-list li + li,
.source-meta-list li + li,
.source-list li + li {
  margin-top: 0.55rem;
}

.pillar-list,
.ordered-list,
.link-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.65;
}

.link-list {
  list-style: none;
  padding-left: 0;
}

.link-list li + li,
.faq-list dd + dt {
  margin-top: 0.75rem;
}

.topic-rail {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.topic-rail .panel:first-child {
  position: sticky;
  top: 5.75rem;
  max-height: calc(100vh - 7rem);
  overflow: auto;
}

.topic-rail .panel:first-child .mini-label {
  margin-bottom: 0.85rem;
}

.source-jump-list {
  display: grid;
  gap: 0.35rem;
  padding-left: 0;
  list-style: none;
}

.source-jump-list li + li {
  margin-top: 0;
}

.source-jump-list a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.source-jump-list a:hover,
.source-jump-list a:focus-visible {
  border-left-color: var(--accent);
  background: rgba(64, 95, 131, 0.08);
  color: var(--page-ink);
}

.faq-list {
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.faq-list dt {
  font-weight: 700;
}

.faq-list dd {
  margin: 0.35rem 0 0;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.placeholder-card {
  background:
    linear-gradient(135deg, rgba(239, 122, 26, 0.08), transparent 58%),
    var(--surface);
  border-style: dashed;
}

.placeholder-card p:last-child {
  margin-bottom: 0;
}

.theme-link-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.theme-link-list li {
  margin: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.future-hero,
.intro-band,
.value-card,
.feature-section,
.topic-card,
.article-card,
.theme-card,
.media-card,
.team-card,
.membership-panel,
.topic-hero,
.topic-columns > * {
  animation: rise-in 420ms ease both;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    position: static;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .future-hero {
    min-height: 42rem;
  }

  .hero-inner,
  .intro-grid,
  .feature-section,
  body[data-theme="signal"] .feature-section,
  .topic-columns,
  .membership-panel {
    grid-template-columns: 1fr;
  }

  body[data-theme="signal"] .feature-copy,
  body[data-theme="signal"] .image-panel {
    order: initial;
  }

  .value-grid,
  .topic-grid,
  body[data-theme="aufbruch"] .topic-grid,
  body[data-theme="signal"] .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid,
  body[data-theme="aufbruch"] .article-grid,
  body[data-theme="signal"] .article-grid,
  .theme-grid,
  .media-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .article-card-featured,
  body[data-theme="signal"] .article-card-featured {
    grid-template-columns: 1fr;
  }

  .article-card-featured img {
    aspect-ratio: 16 / 9;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .topic-hero h1 {
    font-size: 3.25rem;
  }

  .topic-rail .panel:first-child {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 17px;
  }

  .site-header,
  .site-footer,
  main > section:not(.future-hero),
  .hero-inner,
  .topic-layout {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-frame {
    width: 3.8rem;
    height: 3rem;
  }

  .brand-logo {
    width: 3.2rem;
  }

  .brand-copy strong {
    font-size: 1.32rem;
  }

  .primary-nav a,
  .site-footer nav a {
    font-size: 0.84rem;
    padding: 0.4rem 0.5rem;
  }

  .future-hero {
    min-height: 39rem;
  }

  .hero-inner {
    padding: 3rem 0 2.5rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2,
  .membership-panel h2,
  .topic-main h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .value-grid,
  .topic-grid,
  body[data-theme="aufbruch"] .topic-grid,
  body[data-theme="signal"] .topic-grid {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .values-section,
  .feature-section,
  .topic-section,
  .article-section,
  .theme-section,
  .media-section,
  .team-section {
    padding: 3rem 0;
  }

  .value-card,
  .topic-card,
  .theme-card,
  .article-card,
  .media-card,
  .team-card,
  .membership-panel,
  .topic-hero,
  .topic-main,
  .topic-rail .panel {
    padding: 1rem;
  }

  .image-panel {
    min-height: 20rem;
  }

  .topic-hero h1 {
    font-size: 2.45rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 0.8rem;
    align-items: start;
  }
  .site-footer .footer-brand   { grid-column: 1; grid-row: 1; justify-self: center; }
  .site-footer .footer-social  { grid-column: 1; grid-row: 2; }
  .site-footer .footer-aux     { grid-column: 1; grid-row: 3; justify-content: center; }
}

/* ====================================================================
   Station-Cards · Karten-Scroll-Story für Wert.Voll-Arcs (Mitmacher,
   Entscheider). Reuses .topic-card visual language but with a vertical
   stack layout so each station reads as one block.
   ==================================================================== */
.station-section {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
}
.station-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  display: grid;
  gap: 0.4rem;
}
.station-card-accent {
  border-left: 4px solid var(--accent-warm);
  padding-left: calc(1.8rem - 4px);
  background: linear-gradient(180deg, rgba(244, 122, 33, 0.06), transparent 40%), var(--surface);
}
/* Lage-Cluster · used on the Entscheider arc for the three "Die Lage"-stations
   (Zeitdruck, Polarisierung, ideologische Überstrahlung) that belong together.
   Subtle blue accent so they read as one block without overpowering the page. */
.station-card-cluster {
  border-left: 4px solid var(--accent);
  padding-left: calc(1.8rem - 4px);
  background: linear-gradient(180deg, rgba(20, 125, 138, 0.05), transparent 40%), var(--surface);
}
.station-num {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
}
.station-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.85rem;
  line-height: 1.2;
  text-transform: none;
}
.station-card-accent h2 { font-size: 2.1rem; }
.station-card p { margin: 0 0 0.55rem; line-height: 1.6; }
.station-pointe { color: var(--accent-warm); }
.station-frage  { color: var(--accent); font-weight: 600; padding-top: 0.4rem; }
.station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 0.3rem;
}

/* Table of contents · short numbered list inside a topic-card.
   Used on the entscheider placeholder while the full prose is in progress. */
.toc-list {
  margin: 0.45rem 0 0;
  padding-left: 1.4rem;
  line-height: 1.55;
  color: var(--muted);
}
.toc-list li { margin: 0.18rem 0; }

/* Term list · definition entries (10 Werte, 9 Spannungen).
   Tighter than a station-card, since each term is one short sentence. */
.term-section {
  display: grid;
  gap: 0.7rem;
  padding-top: 2rem;
}
.term-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.4rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.3rem;
  align-items: baseline;
}
.term-num {
  grid-column: 1; grid-row: 1 / span 2;
  margin: 0;
  align-self: start;
  padding-top: 0.18rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
}
.term-card h2 {
  grid-column: 2;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  text-transform: none;
}
.term-card p {
  grid-column: 2;
  margin: 0;
  line-height: 1.55;
  color: var(--text);
}

/* Detailed term card (Werte-Seite): main paragraph + example + merksatz,
   all stacked under the title in the same column. Keeps the same body type
   size as the rest of the page — no extra weight/size changes. */
.term-card-detailed {
  grid-template-columns: auto 1fr;
  row-gap: 0.6rem;
  padding: 1.4rem 1.6rem 1.5rem;
}
.term-card-detailed p { grid-column: 2; line-height: 1.6; }
.term-card-detailed .term-example { color: var(--muted); }
.term-card-detailed .term-merksatz { color: var(--accent-warm); }
.term-aside {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

/* Goal cross · four quadrants (Warum / Was / Wer / Woran) around one center
   piece that names the goal. Pattern follows the smilingpirate kit-atlas
   'goal-visualizations cross' template, adapted to a static page block. */
.goal-cross {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 1.6rem;
  row-gap: 3rem;
  margin: 1.2rem 0 0.6rem;
}
.goal-quadrant {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem;
  display: grid;
  gap: 0.4rem;
}
.goal-quadrant p { margin: 0; line-height: 1.55; }
.goal-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-warm);
  font-size: 1.05rem;
}
.goal-purpose      { border-top: 3px solid #c7847d; }
.goal-outcome      { border-top: 3px solid #d8c58d; }
.goal-stakeholders { border-top: 3px solid #78aac0; }
.goal-measures     { border-top: 3px solid #7fb195; }

.goal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: 1rem 1.2rem;
  text-align: center;
  z-index: 2;
  width: min(34%, 16rem);
  box-shadow: 0 12px 28px rgba(16, 21, 33, 0.18);
}
.goal-center-label {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.goal-center-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .goal-cross {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .goal-center {
    position: static;
    transform: none;
    width: auto;
    order: 2;
  }
  .goal-purpose      { order: 1; }
  .goal-outcome      { order: 3; }
  .goal-stakeholders { order: 4; }
  .goal-measures     { order: 5; }
}

/* Text-only hero: same eyebrow/h1/lead block as the image-hero but without
   the image/overlay. Used by werte, spannungen, wertvoll-anwendung. */
.future-hero-text {
  background: linear-gradient(180deg, rgba(20, 125, 138, 0.06), transparent 70%);
  padding: 3rem 0 1.6rem;
}
.future-hero-text .hero-inner { padding: 1rem 0 0; }
.future-hero-text .hero-copy { max-width: none; }

/* Prose block for long-form content (article-rating page). Keeps the same
   reading rhythm as the rest of the site but without card framing. */
.prose-block {
  display: grid;
  gap: 0.6rem;
  padding: 0.4rem 0 0.6rem;
}
.prose-block h3 {
  margin: 0.8rem 0 0;
  font-size: 1.2rem;
  text-transform: none;
}
.prose-block p,
.prose-block li { line-height: 1.6; }
.prose-block ul,
.prose-block ol { margin: 0; padding-left: 1.3rem; display: grid; gap: 0.3rem; }
.prose-pointe { color: var(--accent-warm); }
.lead-pointe { color: var(--accent-warm); margin-top: 0.4rem; }

/* Anhang section · grid uses topic-card pattern from the homepage.
   anhang-card just trims index numbering down to a soft letter marker. */
.anhang-section .section-head .lead { margin-top: 0.4rem; }
.anhang-card .topic-index {
  background: rgba(64, 95, 131, 0.12);
  color: var(--accent);
}
.anhang-card ul { padding-left: 1.1rem; margin: 0.4rem 0 0; }
.anhang-card ul li { margin: 0.18rem 0; line-height: 1.45; }

/* ====================================================================
   WERT.VOLL brand name styling — orange WERT, blue VOLL, mirrors the logo.
   Use inline:
     <span class="wertvoll-name"><span class="wert">WERT</span>.<span class="voll">VOLL</span></span>
   ==================================================================== */
.wertvoll-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wertvoll-name .wert { color: #1f4870; }
.wertvoll-name .voll { color: var(--accent-warm, #ef7a1a); }

/* On darker themes WERT needs more luminance so it stays readable
   against the dark hero backdrop / surface colours. */
body[data-theme="signal"]   .wertvoll-name .wert { color: #5fb9c8; }
body[data-theme="aufbruch"] .wertvoll-name .wert { color: #8cabff; }

/* ====================================================================
   WERT.VOLL · vier Wege rein. Topic-card-style cards with coloured left
   bars (orange for the two Arc cards, blue for the discussion + soon).
   ==================================================================== */
.wertvoll-section { padding-top: 2.4rem; }

/* Standalone grid — does NOT inherit .topic-grid because the theme variants of
   .topic-grid force 4 columns. Keep this as its own 2x2 grid regardless of theme. */
.wertvoll-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wertvoll-card {
  position: relative;
  padding-left: 1.4rem;
}
.wertvoll-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  border-top-left-radius: var(--radius-card);
  border-bottom-left-radius: var(--radius-card);
}
.wertvoll-card-arc::before { background: var(--accent-warm); }
.wertvoll-card-aux::before { background: #316b8a; }

/* On the discussion/soon cards which carry the blue bar, the topic-index
   number should also be blue rather than orange (default for topic-index). */
.wertvoll-card-aux .topic-index { color: #316b8a; }

/* Coming-soon card lists become tight unstyled items. */
.wertvoll-card-soon ul {
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.wertvoll-card-soon ul li::before {
  content: "→ ";
  color: #1f4870;
  font-weight: 800;
}
/* Override .topic-card strong (which forces display-font + 1.45rem) so the
   tool names inside the soon-card stay inline with their description. */
.wertvoll-card-soon ul strong {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #1f4870;
  font-weight: 700;
}

/* Hover treatment matches existing topic-cards (already styled), only the
   arc cards (links) get the lift. The coming-soon card is a static div. */
a.wertvoll-card:hover { transform: translateY(-2px); }

@media (max-width: 880px) {
  .wertvoll-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   Gesundheits-Konzept · Variant cards + side-by-side comparison.
   ==================================================================== */
.variant-section { padding-top: 1rem; }

.variant-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.variant-card .variant-audience {
  margin: 0.15rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.variant-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  padding: 0.4rem 0.7rem;
  background: rgba(20, 125, 138, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--page-ink);
  cursor: pointer;
  user-select: none;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.variant-compare-label:hover { border-color: var(--accent-warm); }
.variant-compare-toggle { accent-color: var(--accent-warm); transform: scale(1.1); cursor: pointer; }
.variant-compare-label:has(.variant-compare-toggle:checked) {
  border-color: var(--accent-warm);
  background: rgba(244, 122, 33, 0.16);
}

/* ── Comparison area ───────────────────────────────────────────── */
.comparison-section { padding-top: 1rem; padding-bottom: 3rem; }

.comparison-empty {
  margin: 1rem 0 0;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

.comparison-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 0.4rem 0 1rem;
  padding: 0.6rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 0.88rem;
}
.cmp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  user-select: none;
  color: var(--page-ink);
}
.cmp-toggle input[type="checkbox"] {
  accent-color: var(--accent-warm);
  transform: scale(1.05);
}
.cmp-button {
  margin-left: auto;
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(244, 122, 33, 0.08);
  color: var(--page-ink);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-control);
  font: 700 0.85rem/1.1 inherit;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}
.cmp-button:hover {
  border-color: var(--accent-warm);
  background: rgba(244, 122, 33, 0.18);
  transform: translateY(-1px);
}

.comparison-columns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(22rem, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.comparison-column {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 24px rgba(16, 21, 33, 0.08);
  scroll-snap-align: start;
  min-height: 32rem;
  max-height: 70vh;
}

.comparison-column-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 125, 138, 0.05), transparent);
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
}
.col-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem; height: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.col-open:hover { border-color: var(--accent-warm); background: rgba(244, 122, 33, 0.1); }

.col-title { min-width: 0; }
.col-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.col-audience {
  margin: 0 0 0.1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.col-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  width: 1.65rem; height: 1.65rem;
  font: 700 1rem/1 inherit;
  color: var(--page-ink);
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.col-btn:hover:not([disabled]) { border-color: var(--accent-warm); background: rgba(244, 122, 33, 0.1); }
.col-btn[disabled] { opacity: 0.35; cursor: default; }
.col-btn-close { color: var(--accent-warm); font-size: 1.1rem; }

.comparison-column-body {
  padding: 0.8rem 1rem 1.1rem;
  overflow-y: auto;
  line-height: 1.55;
  font-size: 0.94rem;
}
.comparison-column-body h1 { font-size: 1.35rem; text-transform: none; line-height: 1.2; margin-bottom: 0.4rem; }
.comparison-column-body h2 { font-size: 1.15rem; margin-top: 1rem; }
.comparison-column-body h3 { font-size: 1rem; margin-top: 0.8rem; color: var(--accent); }
.comparison-column-body h4,
.comparison-column-body h5,
.comparison-column-body h6 { font-size: 0.92rem; margin-top: 0.7rem; color: var(--muted); }
.comparison-column-body p { margin: 0 0 0.6rem; }
.comparison-column-body hr { border: 0; border-top: 1px dashed var(--line); margin: 1rem 0; }
.comparison-column-body ul { padding-left: 1.2rem; margin: 0 0 0.6rem; }
.comparison-column-body blockquote {
  margin: 0.6rem 0;
  padding: 0.5rem 0.8rem;
  border-left: 3px solid var(--accent-warm);
  color: var(--muted);
}
.comparison-column-body blockquote p { font-size: 0.92rem; margin: 0; }
.comparison-column-body em { color: var(--accent-warm); font-style: italic; }
.comparison-column-body code { background: rgba(20, 125, 138, 0.1); padding: 0 4px; border-radius: 3px; font-size: 0.86em; }

@media (max-width: 880px) {
  .comparison-columns { grid-auto-columns: 88vw; }
  .comparison-column { max-height: none; min-height: 26rem; }
}

/* Full-width comparison mode: comparison-section escapes the content-width
   container and spans the full viewport. Other page sections stay constrained. */
body.compare-fullwidth .comparison-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}
body.compare-fullwidth .comparison-columns {
  grid-auto-columns: minmax(20rem, 1fr);
}

/* Single-variant view (#variant=<id>) hides everything else and centres the
   chosen variant for clean reading. */
body.single-variant-active main > section:not(.single-variant-view) { display: none; }

/* Compare-only view (#tabelle) hides hero + variant cards, shows just the
   comparison section so the table fills the new tab. */
body.compare-only-active main > section:not(.comparison-section) { display: none; }
body.compare-only-active .comparison-section { padding-top: 2rem; }
.single-variant-view {
  padding: 2rem clamp(0.5rem, 2vw, 1.5rem) 4rem;
  display: flex;
  justify-content: center;
}
.single-variant-inner {
  width: 100%;
  max-width: 56rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.6rem 2rem;
  box-shadow: 0 14px 36px rgba(16, 21, 33, 0.12);
}
.single-variant-head {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.single-variant-head .back-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.single-variant-head h1 {
  font-size: 1.6rem;
  text-transform: none;
  line-height: 1.25;
}
.single-variant-body { line-height: 1.65; font-size: 1rem; }
.single-variant-body h1 { font-size: 1.6rem; text-transform: none; margin-bottom: 0.6rem; }
.single-variant-body h2 { font-size: 1.25rem; margin-top: 1.4rem; }
.single-variant-body h3 { font-size: 1.05rem; margin-top: 1.1rem; color: var(--accent); }
.single-variant-body p  { margin: 0 0 0.7rem; }
.single-variant-body hr { border: 0; border-top: 1px dashed var(--line); margin: 1.4rem 0; }
.single-variant-body em { color: var(--accent-warm); font-style: italic; }
.single-variant-body blockquote {
  margin: 0.8rem 0;
  padding: 0.6rem 1rem;
  border-left: 3px solid var(--accent-warm);
  color: var(--muted);
}

/* ====================================================================
   VMG panel on uber-uns/index.html (Vision / Mission / Hebel).
   Uses the existing .panel, .eyebrow, .topic-card and .muted styles —
   only what's truly new lives here: tier-stack gaps, vision/mission
   font sizes, and the 2x2 Hebel grid.
   ==================================================================== */
.vmg-panel { display: grid; gap: 1.6rem; padding: 2rem; }
.vmg-tier  { display: grid; gap: 0.4rem; }
.vmg-vision  { font-size: 2.25rem; line-height: 1.2;  font-family: var(--font-display); font-weight: 700; }
.vmg-mission { font-size: 1.4rem;  line-height: 1.4; }
.vmg-intro   { color: var(--muted); line-height: 1.55; margin: 0 0 0.4rem; }
.vmg-hebel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 720px) {
  .vmg-hebel-grid { grid-template-columns: 1fr; }
}


