/* Gemeinsame Gestaltung der drei kurzen Kampagnenseiten:
   warum.html, erste-wahl.html, unterstuetzen.html.
   Farben, Schriften und Formen wie auf der Startseite. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --magenta:      #c90064;
  --magenta-deep: #9e0052;
  --ink:          #201d20;
  --muted:        #605a63;
  --paper:        #ffffff;
  --frame:        #f3f0f1;
  --line:         #d9d3d6;
  --green:        #7ab829;
}

html { scroll-behavior: smooth; }

body {
  background: var(--frame);
  color: var(--ink);
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1180px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(32, 29, 32, .04);
}

/* Wahlaufruf am Wahltag. Nach der Wahl den Block im Quelltext
   der Seiten wieder entfernen. */
.wahlruf {
  background: var(--magenta);
  color: #fff;
  border-bottom: 5px solid var(--magenta-deep);
}
.wahlruf-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 5vw, 4.5rem) 1.35rem;
}
.wahlruf-num {
  flex: none;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff; color: var(--magenta);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Archivo', 'Arial Black', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: 2.6rem; line-height: .84; letter-spacing: -.03em;
}
.wahlruf-num .k {
  font-size: .8rem; font-style: normal; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.wahlruf-title {
  font-family: 'Archivo', 'Arial Black', sans-serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(2rem, 10vw, 2.7rem);
  line-height: .95; letter-spacing: -.02em;
  margin: 0;
}
.wahlruf-zeit {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 1.05rem; letter-spacing: .01em; margin-top: .3rem;
}

@media (min-width: 701px) {
  .wahlruf-inner { gap: 1.8rem; padding-top: 1.6rem; padding-bottom: 1.7rem; }
  .wahlruf-num { width: 112px; height: 112px; font-size: 3.6rem; }
  .wahlruf-num .k { font-size: .98rem; }
  .wahlruf-title { font-size: clamp(2.6rem, 4vw, 3.6rem); }
  .wahlruf-zeit { font-size: 1.3rem; margin-top: .45rem; }
}

/* Kopfleiste – wie auf den übrigen Unterseiten. */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 1rem;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  min-height: 58px; background: var(--magenta); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .92rem;
}
.topbar-brand { font-size: 1.05rem; font-weight: 900; letter-spacing: -.04em; }
.back {
  display: flex; align-items: center;
  margin-left: auto;
  color: #fff; text-decoration: none;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .92rem;
}
.back-label { display: flex; align-items: center; gap: .55rem; }
.go {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 12H6M11 7l-5 5 5 5' fill='none' stroke='%23c90064' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 15px 15px;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.25rem clamp(1.5rem, 5vw, 3rem) 4rem;
}

/* Lesbare Zeilenlänge im breiten Satzspiegel – wie .moin-text auf der
   Startseite. Überschriften dürfen über die volle Spalte laufen. */
main p,
main ul,
main .wer,
main .vorlage { max-width: 780px; }

.kicker {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .4rem .7rem;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
  color: var(--magenta);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Der Kampagnen-Dreiklang unter dem Vorspann. */
.claim {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  letter-spacing: -.02em;
  color: var(--magenta);
  margin-bottom: 1.5rem;
}

/* Quellenangabe unter einer Faktenaussage. */
.quelle {
  font-size: .85rem;
  color: var(--muted);
  margin-top: -.6rem;
}

h2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 2.75rem 0 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

/* Zusagen – grüner Haken wie auf der Startseite. */
ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
li::before {
  content: "";
  position: absolute;
  left: .25rem; top: .5em;
  width: .45rem; height: .8rem;
  border: solid var(--green);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Was ausdrücklich nicht versprochen wird – magentafarbener Strich. */
.nicht li::before {
  content: "";
  top: .78em;
  width: .85rem; height: 0;
  border: 0;
  border-top: 3px solid var(--magenta);
  transform: none;
}

/* Nummerierte Schritte. */
.schritte { counter-reset: schritt; }
.schritte li { padding-left: 2.4rem; margin-bottom: .9rem; }
.schritte li::before {
  counter-increment: schritt;
  content: counter(schritt);
  position: absolute;
  left: 0; top: .15em;
  width: 1.65rem; height: 1.65rem;
  border: 0; transform: none;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}

/* Gegenüberstellung, wer was entscheidet. */
.wer { margin: 0 0 1.25rem; }
.wer div { padding: .85rem 0; border-top: 1px solid var(--line); }
.wer div:last-child { border-bottom: 1px solid var(--line); }
.wer div a { display: inline-block; margin-top: .25rem; }
.wer b {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .15rem;
}

/* Zitierfähige Nachrichtenvorlage. */
.vorlage {
  border-top: 3px solid var(--magenta);
  border-bottom: 3px solid var(--magenta);
  padding: 1.2rem 0;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
}

a { color: var(--magenta); }

/* Handlungsaufforderung. */
.cta {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.9rem;
  padding: .95rem 1.25rem;
  background: var(--magenta);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
.cta:hover { background: var(--magenta-deep); }
.cta .go {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h13M13 7l5 5-5 5' fill='none' stroke='%23c90064' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.cta + .cta { margin-left: .6rem; }

/* Deutlicher Abstand zwischen Knopf und nachgeordnetem Textlink. */
.cta + .zweit { margin-left: 2.2rem; }

.zweit {
  display: inline-block;
  margin-top: 1.9rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: var(--magenta);
  text-decoration: none;
}
.zweit:hover { text-decoration: underline; }

.termin {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--muted);
}

/* Videoclip im Hochformat. */
.clip { margin: 2rem 0 0; }
.clip video {
  display: block;
  width: auto; height: auto;
  max-width: 100%; max-height: 62vh;
}

footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
footer small { color: var(--muted); letter-spacing: .04em; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--magenta);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.footer-links a:hover { text-decoration: underline; }

@media (min-width: 701px) {
  .wrap { max-width: 1440px; }
  main { max-width: 1040px; padding: 4rem 0 5rem; }
  footer { max-width: 1040px; padding-left: 0; padding-right: 0; }
}

@media (max-width: 700px) {
  .topbar { min-height: 56px; padding: 0 1.1rem; gap: .7rem; }
  .topbar-brand { font-size: .96rem; }
  .back .beschriftung { display: none; }
  main { padding: 2.25rem 1.1rem 3rem; }
  footer { padding-left: 1.1rem; padding-right: 1.1rem; }
  footer { flex-direction: column; align-items: flex-start; }
  .cta { width: 100%; justify-content: space-between; }
  .cta + .cta { margin-left: 0; margin-top: .6rem; }
  .cta + .zweit { display: block; margin-left: 0; margin-top: 1.3rem; }
}
