/* Schlichte Leseseite für Impressum und Datenschutzerklärung. */

.rechtstext {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(6rem, 16vh, 10rem) var(--rand) clamp(4rem, 10vh, 7rem);
}
.rechtstext__titel {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 2.5rem;
}
.rechtstext h2 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  margin: 2.6rem 0 0.8rem;
}
.rechtstext h3 {
  font-family: var(--grotesk);
  font-size: var(--t-klein);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.8rem 0 0.5rem;
}
.rechtstext p,
.rechtstext li {
  font-family: var(--grotesk);
  font-size: var(--t-klein);
  line-height: 1.75;
  color: var(--tinte-leise);
}
.rechtstext p + p { margin-top: 0.9rem; }
.rechtstext ul { margin: 0.6rem 0 0; padding-left: 1.2rem; }
.rechtstext li { margin-bottom: 0.35rem; }
.rechtstext a { color: var(--tinte); }
.rechtstext dl {
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0.8rem 0 0;
  font-family: var(--grotesk);
  font-size: var(--t-klein);
  line-height: 1.6;
}
.rechtstext dt { color: var(--tinte-leise); }
.rechtstext dd { margin: 0; }
@media (max-width: 560px) {
  .rechtstext dl { grid-template-columns: 1fr; gap: 0.15rem; }
  .rechtstext dd { margin-bottom: 0.7rem; }
}

/* Noch offene Angaben deutlich sichtbar markieren – damit nichts
   versehentlich mit Platzhalter live geht. */
.offen {
  display: inline-block;
  padding: 0.1em 0.5em;
  background: #fdf1c9;
  border-bottom: 2px solid #d9a904;
  font-weight: 600;
  color: #6b5300;
}

.zurueck {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--grotesk);
  font-size: var(--t-mikro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tinte);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25em;
}
