/* ---------------------------------------------------------------------------
   Kandidatur Michael Josef Schoepf - Vizepraesident Weltbund Oesterreich
   Landingpage schoepf.online

   Farben und Masse folgen den Kandidatur-Postkarten (Weltbundtagung 2026).
   Keine externen Ressourcen: Schriften liegen im Paket, es werden keine
   Verbindungen zu Dritten aufgebaut.
--------------------------------------------------------------------------- */

/* --- Schriften ---------------------------------------------------------- */

@font-face {
  font-family: 'Jost';
  src: url('../schriften/jost-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../schriften/sourcesans3-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../schriften/sourcesans3-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../schriften/sourcesans3-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Grundwerte --------------------------------------------------------- */

:root {
  /* Weltbund-Rot der Postkarten. Kontrast auf Weiss 4,44:1 - ausreichend
     fuer grosse Schrift und Flaechen, nicht fuer Fliesstext. */
  --rot: #e52e0e;
  /* Dunklerer Rotton fuer kleine Schrift und Schaltflaechen: 5,08:1. */
  --rot-text: #d42a0d;
  --rot-dunkel: #b02209;
  --hellblau: #acd4f3;
  --hellblau-zart: #e6f2fc;
  --schwarz: #1a1a1a;
  --grau: #6b6b6b;
  --grau-linie: #e2e2e2;
  --weiss: #ffffff;

  --schrift-kopf: 'Jost', 'Avenir Next', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --schrift-text: 'Source Sans 3', 'Source Sans Pro', Calibri, system-ui, sans-serif;

  --breite: 1120px;
  --rand: clamp(1.25rem, 5vw, 3rem);
  --band: 6px;

  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Damit Sprungmarken nicht unter der klebenden Kopfleiste verschwinden. */
:target,
.abschnitt[id],
.held[id] {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--weiss);
  color: var(--schwarz);
  font-family: var(--schrift-text);
  font-size: clamp(1.0625rem, 0.99rem + 0.35vw, 1.1875rem);
  line-height: 1.6;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  /* Der voreingestellte graue Kasten beim Antippen passt nicht zur Seite. */
  -webkit-tap-highlight-color: rgb(229 46 14 / 12%);
}

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

a {
  color: var(--rot-text);
  text-underline-offset: 0.18em;
  text-decoration-thickness: from-font;
}

a:hover {
  color: var(--rot-dunkel);
}

:focus-visible {
  outline: 3px solid var(--rot-text);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Bausteine ---------------------------------------------------------- */

.huelle {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}

.springmarke {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--schwarz);
  color: var(--weiss);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}

.springmarke:focus {
  left: 0;
  color: var(--weiss);
}

/* Fahnenband rot-weiss-rot, das Erkennungszeichen der Postkarten. */
.fahnenband {
  height: var(--band);
  background: linear-gradient(
    to bottom,
    var(--rot) 0 33.333%,
    var(--weiss) 33.333% 66.666%,
    var(--rot) 66.666% 100%
  );
  flex-shrink: 0;
}

.kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--rot-text);
  margin: 0 0 0.75rem;
}

.kicker--grau {
  color: var(--grau);
}

h1,
h2,
h3 {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.125rem;
  line-height: 1.25;
}

p {
  margin: 0 0 1.1em;
}

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

.schaltflaeche {
  display: inline-block;
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--rot-text);
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.schaltflaeche--voll {
  background: var(--rot-text);
  color: var(--weiss);
}

.schaltflaeche--voll:hover {
  background: var(--rot-dunkel);
  border-color: var(--rot-dunkel);
  color: var(--weiss);
}

.schaltflaeche--leer {
  background: transparent;
  color: var(--rot-text);
}

.schaltflaeche--leer:hover {
  background: var(--rot-text);
  color: var(--weiss);
}

/* --- Kopfleiste --------------------------------------------------------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--weiss);
  border-bottom: 1px solid var(--grau-linie);
}

.kopf__leiste {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding-block: 0.25rem;
}

.kopf__name {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  color: var(--schwarz);
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
  padding-block: 0.5rem;
}

.kopf__name:hover {
  color: var(--rot-text);
}

/* --- Navigation: zwei Fassungen statt einer -----------------------------

   Auf breiten Schirmen steht die Liste offen in der Leiste, auf schmalen
   klappt sie ueber das <details>-Element auf - ohne eine Zeile JavaScript.

   Bewusst zwei getrennte Elemente statt eines: Der Inhalt eines geschlossenen
   <details> ist groessenbegrenzt, das Element misst 0 Pixel in der Breite,
   auch wenn man den Inhalt sichtbar schaltet. Aufheben liesse sich das nur
   ueber ::details-content, das erst sehr neue Browser kennen. Je Bildschirm-
   breite ist immer genau eine der beiden Fassungen im Dokument sichtbar.
--------------------------------------------------------------------------- */

.kopf__navigation {
  display: none;
}

.kopf__navigation a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--schwarz);
  text-decoration: none;
  padding-block: 0.5rem;
}

.kopf__navigation a:hover {
  color: var(--rot-text);
}

.menue {
  order: 3;
}

.menue__knopf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  color: var(--schwarz);
  border-radius: 2px;
  list-style: none;
}

.menue__knopf::-webkit-details-marker,
.menue__knopf::marker {
  display: none;
  content: '';
}

.menue__knopf svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menue__zu {
  display: none;
}

.menue[open] .menue__auf {
  display: none;
}

.menue[open] .menue__zu {
  display: block;
}

.menue__liste {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border-bottom: 1px solid var(--grau-linie);
  box-shadow: 0 10px 24px rgb(0 0 0 / 8%);
  padding: 0.25rem var(--rand) 1rem;
}

.menue__liste a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--schwarz);
  text-decoration: none;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--grau-linie);
}

.menue__liste a:last-child {
  border-bottom: none;
}

.menue__liste a:hover {
  color: var(--rot-text);
}

/* --- Sprachumschalter mit Globus ---------------------------------------- */

.sprache {
  order: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
}

.sprache__globus {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--grau);
  stroke-width: 1.6;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.sprache a,
.sprache span {
  /* Tippflaeche: 0,55 rem oben und unten ergeben zusammen mit der Zeilenhoehe
     die 44 Pixel, die auf dem Telefon sicher zu treffen sind. */
  padding: 0.55rem 0.35rem;
  text-decoration: none;
}

.sprache a {
  color: var(--grau);
}

.sprache a:hover {
  color: var(--rot-text);
  text-decoration: underline;
}

.sprache [aria-current='true'] {
  color: var(--schwarz);
}

.sprache__trenner {
  color: var(--grau-linie);
  padding: 0;
}

@media (min-width: 46rem) {
  .kopf__navigation {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .menue {
    display: none;
  }

  .sprache {
    order: 0;
    margin-left: 1.5rem;
  }
}

/* --- Held (Aufmacher) --------------------------------------------------- */

.held {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--grau-linie);
}

/* Das Motiv liegt absolut, sonst diktiert seine Eigenhoehe (760 x 1470) die
   Hoehe des ganzen Aufmachers. Die Hoehe soll vom Text kommen, nicht vom Bild. */
.held__bild {
  background: var(--hellblau);
  position: relative;
  overflow: hidden;
  /* Festes Seitenverhaeltnis statt fester Hoehe: Das Feld ist formatfuellend
     beschnitten, und nur bei gleichbleibendem Verhaeltnis bleibt der Ausschnitt
     ueber alle Breiten derselbe. Mit fester Hoehe wurde das Feld auf Tablets
     breiter und blieb gleich hoch - am 22.08.2026 stand dort nur die obere
     Kopfhaelfte im Bild. Die Obergrenze fasst den Fall des quer gehaltenen
     Telefons ein, wo sonst das halbe Fenster Bild waere. */
  aspect-ratio: 5 / 4;
  max-height: 60vh;
}

/* Auf dem Telefon fuellt ein Ausschnitt die Flaeche: Einpassen liesse rechts
   und links je ein Drittel hellblaue Flaeche stehen. Der Scheitel beginnt im
   Motiv bereits bei 0,3 Prozent der Hoehe - die 1,25 rem oben sind deshalb
   nicht Zierrat, sondern die Kopffreiheit, die es sonst nicht gaebe. */
.held__bild img {
  position: absolute;
  inset: 1.25rem 0 0;
  width: 100%;
  height: calc(100% - 1.25rem);
  object-fit: cover;
  object-position: 50% 0;
}

.held__text {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--rand);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.held__text > * {
  max-width: 34rem;
}

.held h1 {
  font-size: clamp(2.4rem, 1.5rem + 3.6vw, 3.9rem);
  margin-bottom: 1.25rem;
}

.held__spruch {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.6rem);
  line-height: 1.05;
  color: var(--rot);
  margin: 0 0 0.85rem;
}

.held__satz {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  line-height: 1.45;
  margin-bottom: 1.75rem;
}

.held__amt {
  font-size: 1rem;
  color: var(--grau);
  margin-bottom: 2rem;
}

.held__knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 60rem) {
  .held {
    grid-template-columns: 38% 1fr;
    align-items: stretch;
    min-height: min(46rem, 86vh);
  }

  .held__bild {
    /* Seitenverhaeltnis und Obergrenze der schmalen Ansicht wieder aufheben -
       hier bestimmt die Textspalte die Hoehe der Reihe. */
    aspect-ratio: auto;
    max-height: none;
    height: auto;
  }

  /* Auf breiten Schirmen ist die Spalte hoch genug, um die ganze Gestalt zu
     zeigen - wie auf der Postkarte, unten buendig. */
  .held__bild img {
    inset: 1.25rem 0 0;
    height: calc(100% - 1.25rem);
    object-fit: contain;
    object-position: bottom center;
  }

  .held__text {
    padding-inline: clamp(2.5rem, 5vw, 4.5rem)
      max(var(--rand), calc((100vw - var(--breite)) / 2));
  }
}

/* --- Abschnitte --------------------------------------------------------- */

.abschnitt {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.abschnitt--getoent {
  background: var(--hellblau-zart);
}

.abschnitt__kopf {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.abschnitt__einleitung {
  font-size: 1.0625rem;
  color: var(--grau);
  margin-top: 0.5rem;
}

/* --- Bilanzliste mit hellblauen Quadraten ------------------------------- */

.taten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 48rem) {
  .taten {
    /* Spaltenweise fuellen: die linke Spalte laeuft von oben nach unten
       durch, sonst springt das Auge beim Lesen zwischen den Spalten.
       Mehrspaltensatz statt Raster: Im Raster gehen die Zeilen ueber beide
       Spalten, die kuerzere musste die Hoehe der laengeren mitgehen und riss
       eine Luecke auf, sobald ein Eintrag gegenueber zweizeilig wurde. */
    display: block;
    columns: 2;
    column-gap: 3rem;
  }

  .taten li {
    /* Kein Eintrag darf zwischen den Spalten zerrissen werden. */
    break-inside: avoid;
    margin-bottom: 0.9rem;
  }

  .taten li:last-child {
    margin-bottom: 0;
  }
}

.taten li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.4;
}

.taten li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--hellblau);
  /* Der Punkt sitzt sonst optisch zu hoch auf der Grundlinie. */
  transform: translateY(-0.1em);
}

.taten li:last-child {
  color: var(--grau);
}

.kennzahlen {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 36rem) {
  .kennzahlen {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

.kennzahlen p {
  margin: 0;
  padding-top: 1.15rem;
  border-top: 3px solid var(--rot);
}

.kennzahlen b {
  display: block;
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.25rem);
  line-height: 1;
  color: var(--rot);
}

/* Zwei der vier Zellen tragen keine Zahl, sondern Text an ihrer Stelle
   (Weisung Michael 01.09.2026). Damit die Zellen gleich hoch bleiben, ist der
   Aufbau derselbe - nur der Grad ist kleiner. */
.kennzahlen--wort b {
  font-size: clamp(1.25rem, 1rem + 0.9vw, 1.6rem);
  line-height: 1.2;
}

.kennzahlen span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.0625rem;
  line-height: 1.35;
}

/* --- Vorhaben ----------------------------------------------------------- */

.vorhaben {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
  padding: 0;
  counter-reset: vorhaben;
}

@media (min-width: 48rem) {
  .vorhaben {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.vorhaben > div {
  padding-top: 1.15rem;
  border-top: 3px solid var(--hellblau);
  counter-increment: vorhaben;
}

.vorhaben > div::before {
  content: counter(vorhaben, decimal-leading-zero);
  display: block;
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--hellblau);
  margin-bottom: 0.5rem;
}

.vorhaben h3 {
  color: var(--rot-text);
  font-family: var(--schrift-text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}

.vorhaben p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.45;
}

/* Abbinder unter dem Raster: bewusst ohne Nummer und ohne Linie - er ist kein
   siebtes Vorhaben, sondern der Hinweis, dass die Liste nicht vollstaendig ist.
   Das hellblaue Quadrat greift die Aufzaehlung der Bilanz auf. */
/* --- Zur Person --------------------------------------------------------- */

.person {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .person {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  }
}

.person__bild {
  background: var(--hellblau);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.person__bild img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.eckdaten {
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--grau-linie);
}

.eckdaten > div {
  display: grid;
  gap: 0.15rem 1.5rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--grau-linie);
  font-size: 1rem;
}

@media (min-width: 34rem) {
  .eckdaten > div {
    grid-template-columns: 11rem minmax(0, 1fr);
  }
}

.eckdaten dt {
  font-weight: 600;
  color: var(--grau);
}

.eckdaten dd {
  margin: 0;
}

/* --- Mottoband ---------------------------------------------------------- */

.mottoband {
  /* Der dunklere Rotton, damit der weisse Satz darunter auch in normaler
     Schriftgroesse den AA-Kontrast erreicht (5,08:1 statt 4,44:1). */
  background: var(--rot-text);
  color: var(--weiss);
  padding-block: clamp(2.75rem, 6vw, 4rem);
  text-align: center;
}

.mottoband p {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 2.85rem);
  line-height: 1.1;
  margin: 0;
}

.mottoband span {
  display: block;
  font-family: var(--schrift-text);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.45;
  margin-top: 0.9rem;
  opacity: 0.95;
}

/* --- Kontakt ------------------------------------------------------------ */

.kontakt {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 48rem) {
  .kontakt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kontakt__kasten {
  border-top: 3px solid var(--hellblau);
  padding-top: 1.15rem;
}

.kontakt__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0 0 0.4rem;
}

.kontakt__wert {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}

.kontakt__wert a {
  color: var(--schwarz);
  text-decoration-color: var(--hellblau);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.22em;
}

.kontakt__wert a:hover {
  color: var(--rot-text);
  text-decoration-color: currentColor;
}

.kontakt__hinweis {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--grau);
}

/* --- Fussbereich -------------------------------------------------------- */

.fuss {
  border-top: 1px solid var(--grau-linie);
  padding-block: 2.5rem 3rem;
  font-size: 0.9375rem;
  color: var(--grau);
}

.fuss__abgrenzung {
  max-width: 44rem;
  margin: 0 0 1.5rem;
}

.fuss__zeilen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.5rem;
}

.fuss__zeilen a {
  color: var(--grau);
}

.fuss__zeilen a:hover {
  color: var(--rot-text);
}

.fuss__stand {
  margin-left: auto;
}

/* --- Rechtstexte (Impressum, Datenschutz) ------------------------------- */

.rechtstext {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.rechtstext__inhalt {
  max-width: 44rem;
}

.rechtstext h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  margin-bottom: 1.75rem;
}

.rechtstext h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.rechtstext ul {
  padding-left: 1.2rem;
  margin: 0 0 1.1em;
}

.rechtstext li {
  margin-bottom: 0.35rem;
}

.rechtstext address {
  font-style: normal;
  margin-bottom: 1.1em;
}

.zurueck {
  display: inline-block;
  margin-top: 2.5rem;
  font-weight: 600;
}

/* Bis die Anschrift eingetragen ist, faellt die Luecke sofort auf. */
.auszufuellen {
  background: #fff3b0;
  border-bottom: 2px solid #d99e00;
  padding: 0.1em 0.3em;
  font-weight: 600;
  color: var(--schwarz);
}

/* --- Druck -------------------------------------------------------------- */

@media print {
  .kopf,
  .held__knoepfe,
  .springmarke {
    display: none;
  }

  body {
    font-size: 11pt;
  }

  .abschnitt,
  .rechtstext {
    padding-block: 1.5rem;
    break-inside: avoid;
  }

  .mottoband {
    color: var(--schwarz);
    background: none;
    border-block: 2px solid var(--rot);
  }

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

  .kontakt__wert a::after {
    content: '';
  }
}

/* --- Fotos fuer Veroeffentlichungen ------------------------------------- */

.fotos {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.fotos > li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding-block: 1.35rem;
  border-top: 1px solid var(--grau-linie);
  margin: 0;
}

.fotos > li:last-child {
  border-bottom: 1px solid var(--grau-linie);
}

.fotos img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--hellblau);
}

.fotos h2 {
  margin-top: 0;
  margin-bottom: 0.15rem;
}

.fotos p {
  margin: 0 0 0.6rem;
}

.fotos__masse {
  color: var(--grau);
  font-size: 0.9375rem;
}

/* Der Hinweiskasten zur Nutzung */
.hinweis {
  background: var(--hellblau-zart);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  margin: 1.75rem 0 0;
}

.hinweis > :last-child {
  margin-bottom: 0;
}
