/* ==========================================================================
   Nein zur Berner Bildungsinitiative — Design System
   Basis: Weiss mit Schwarz (#202428), Akzente Rot und Grün aus dem
   Kampagnensujet. Klare, gerade Formensprache — keine Schrägen/Rotationen.
   Schrift: Inter (Google Fonts) in mehreren Schnitten.
   ========================================================================== */

:root {
  /* Farben */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f7;
  --color-ink: #202428;
  --color-ink-soft: #565c62;
  --color-green: #1f3d2e;
  --color-green-deep: #142a1f;
  --color-green-line: #3c6350;
  --color-red: #cf1a1f;
  --color-red-deep: #9e1216;
  --color-chalk: #ffffff;
  --color-line: #e2e4e7;
  --color-white: #ffffff;

  /* Typografie */
  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 18px;
  --shadow-card: 0 18px 40px -18px rgba(32, 36, 40, 0.28);
  --shadow-soft: 0 10px 24px -14px rgba(32, 36, 40, 0.18);

  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.75rem;
  --space-l: 3rem;
  --space-xl: 5rem;
  --space-xxl: 7.5rem;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-red);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  background: var(--color-red-deep);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn-outline:hover {
  background: var(--color-ink);
  color: var(--color-chalk);
}

.btn-light {
  background: var(--color-chalk);
  color: var(--color-green-deep);
}

.btn-light:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Stempel-Badge (wiederkehrendes Signatur-Element) ---------- */
.stamp {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--color-ink);
}

.brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand__text strong {
  color: var(--color-red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  position: relative;
  padding: 0.3rem 0;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-red);
}

.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
}

.nav__cta-item {
  display: flex;
}

.nav__cta-item .btn,
.nav__cta-item .btn:hover {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  color: var(--color-white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 1.1rem;
    display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav.is-open .nav__links {
    display: flex;
  }
  .nav__cta-item {
    align-self: stretch;
    margin-top: 0.3rem;
  }
  .nav__cta-item .btn {
    width: 100%;
    padding: 0.95rem 1.9rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: var(--space-l) 0 var(--space-xl);
  overflow: hidden;
}

.hero__parties {
  margin-top: var(--space-xl);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-l);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 900;
  color: var(--color-ink);
}

.hero__title span {
  color: var(--color-red);
  display: block;
}

.hero__lead {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  max-width: 46ch;
}

.hero__meta {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-green);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__meta::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-red);
  border-radius: 50%;
  display: inline-block;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* Slideshow / Wandtafel */
.hero__board {
  position: relative;
  width: 100%;
}

.board-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-l);
  padding: 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.board-frame__inner {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius-l) - 10px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-green-deep);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slideshow__slide.is-active {
  opacity: 1;
}

.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}

.slideshow__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.slideshow__dots button.is-active {
  background: var(--color-white);
  transform: scale(1.25);
}

.board-frame__tray {
  display: none;
}

/* ==========================================================================
   Section basics
   ========================================================================== */
.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-l) 0;
}

.section--green {
  background: var(--color-green);
  color: var(--color-chalk);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__head {
  margin-bottom: var(--space-l);
}

.section__head.center {
  text-align: center;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}

.section__lead {
  margin-top: 0.9rem;
  max-width: 62ch;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.section__head.center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.section--green .section__lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   Argument-Wandtafeln (Signatur-Karten)
   ========================================================================== */
.chalk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.chalkboard {
  background: var(--color-white);
  border: 2px solid var(--color-red);
  border-radius: var(--radius-m);
  padding: 2.1rem 1.7rem;
  color: var(--color-ink);
  position: relative;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
}

.chalkboard__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  background: rgba(207, 26, 31, 0.08);
}

.chalkboard h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
}

.chalkboard p {
  color: var(--color-ink-soft);
  font-size: 0.98rem;
}

.chalkboard__quote {
  margin-top: auto;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-ink);
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-line);
}

/* ==========================================================================
   Komitee — Flip Cards
   ========================================================================== */
.komitee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.flip-card {
  perspective: 1400px;
  aspect-ratio: 3 / 4;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flip-card__front {
  background: var(--color-white);
}

.flip-card__photo {
  flex: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.flip-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card__info {
  padding: 1rem 1.1rem 1.1rem;
  border-top: 3px solid var(--color-red);
}

.flip-card__info h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.flip-card__info p {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
}

.flip-card__hint {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.flip-card__back {
  transform: rotateY(180deg);
  background: var(--color-green);
  color: var(--color-chalk);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card__quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.flip-card__back blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.4;
}

.flip-card__back cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
}

.komitee-more {
  margin-top: var(--space-l);
  text-align: center;
}

/* Weitere Komitee-Mitglieder (ohne Foto) */
.member-list-wrap {
  margin-top: var(--space-xl);
  padding-top: var(--space-l);
  border-top: 1px solid var(--color-line);
}

.member-list-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2.5rem;
}

.member-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-line);
}

.member-list li strong {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
}

.member-list li span {
  color: var(--color-ink-soft);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .member-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .member-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Unterstützende Organisationen
   ========================================================================== */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
}

.org-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  min-height: 72px;
}

.org-tile img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
}

.org-tile--text {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.3;
}

/* ==========================================================================
   Mitmachen / Downloads
   ========================================================================== */
.mitmachen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.mitmachen-card {
  background: var(--color-bg-alt);
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}

.mitmachen-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.mitmachen-card p {
  color: var(--color-ink-soft);
  margin-bottom: 1.6rem;
}

.download-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(32, 36, 40, 0.04);
  border: 1px solid rgba(32, 36, 40, 0.14);
  border-radius: var(--radius-s);
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: var(--color-ink);
  transition: background 0.15s ease, transform 0.15s ease;
}

.download-item:hover {
  background: rgba(32, 36, 40, 0.09);
  transform: translateX(3px);
}

.download-item__meta {
  color: var(--color-ink-soft);
}

.download-item__icon {
  color: var(--color-red);
}

/* Variante für Kartenhintergrund auf dunklem Grund (z. B. section--green ohne mitmachen-card) */
.section--green > .container > .download-list .download-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-chalk);
}

.section--green > .container > .download-list .download-item:hover {
  background: rgba(255, 255, 255, 0.16);
}

.download-item__name {
  font-weight: 700;
}

.download-item__meta {
  font-size: 0.82rem;
  opacity: 0.75;
}

.download-item__icon {
  font-family: var(--font-display);
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-l) 0 var(--space-m);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-l);
  padding-bottom: var(--space-l);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.footer__brand img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
}

.footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
}

.footer p {
  font-size: 0.92rem;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.9rem;
}

.footer__col ul {
  display: grid;
  gap: 0.6rem;
}

.footer__col a {
  text-decoration: none;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__col a:hover {
  color: var(--color-red);
}

.footer__bottom {
  padding-top: var(--space-m);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Page hero (Unterseiten)
   ========================================================================== */
.page-hero {
  padding: var(--space-l) 0 var(--space-l);
  background: var(--color-bg);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}

.page-hero__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
}

.page-hero__lead {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-ink-soft);
}

.breadcrumb a:hover {
  color: var(--color-red);
}

/* ==========================================================================
   Argumente-Seite: Liste
   ========================================================================== */
.argument-list {
  display: grid;
  gap: 1.5rem;
}

.argument {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.6rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-m);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.argument__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--color-red);
  opacity: 0.85;
}

.argument h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.argument p {
  color: var(--color-ink-soft);
}

.argument p + p {
  margin-top: 0.9rem;
}

.argument__punch {
  margin-top: 0.9rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-green);
}

.quote-block {
  background: var(--color-green);
  color: var(--color-chalk);
  border-radius: var(--radius-m);
  padding: 2.2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.quote-block img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-chalk);
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  opacity: 0.85;
}

.official-box {
  background: var(--color-bg-alt);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius-s);
  padding: 1.5rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Fliesstext-Block für längere Absätze (Argumente-Seite) */
.prose {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Zweispaltiges Layout: Fliesstext + Callout/Zitat nebeneinander (nutzt volle Containerbreite) */
.split-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-content .prose {
  max-width: none;
}

.split-content .callout {
  max-width: none;
}

.split-content .quote-block {
  flex-direction: column;
  text-align: center;
  height: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.prose strong {
  color: var(--color-ink);
}

/* Callout-Box mit Label (z.B. "Darum Nein", "Klare Empfehlung") */
.callout {
  background: var(--color-bg-alt);
  border-left: 5px solid var(--color-red);
  border-radius: var(--radius-s);
  padding: 1.6rem 1.8rem;
  max-width: 68ch;
}

.callout__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.callout p:not(.callout__label) {
  color: var(--color-ink-soft);
  font-size: 1rem;
}

/* ==========================================================================
   Material-Seite
   ========================================================================== */
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.material-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.material-card__preview {
  aspect-ratio: 16/10;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.material-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.material-card__body h3 {
  font-size: 1.15rem;
}

.material-card__body p {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

/* ==========================================================================
   Legal pages (Impressum/Datenschutz)
   ========================================================================== */
.legal {
  max-width: 74ch;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: var(--space-l);
  margin-bottom: 0.8rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p, .legal li {
  color: var(--color-ink-soft);
  margin-bottom: 0.7rem;
}

.legal ul {
  padding-left: 1.3rem;
  list-style: disc;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__board {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .chalk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .komitee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mitmachen-grid {
    grid-template-columns: 1fr;
  }
  .material-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .chalk-grid {
    grid-template-columns: 1fr;
  }
  .komitee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .argument {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .argument__num {
    font-size: 1.8rem;
  }
  .quote-block {
    flex-direction: column;
    text-align: center;
  }
  .material-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--space-l) 0;
  }
  .hero {
    padding: var(--space-m) 0 var(--space-l);
  }
}

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