/* ==========================================================================
   Datenschutzerklärung
   ========================================================================== */

/* --- Hero ---------------------------------------------------------------- */
.ds-hero { position: relative; background: transparent; }
.ds-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.ds-hero__title { display: flex; flex-direction: column; align-items: flex-start; }
/* „Datenschutzerklärung“ ist ein einziges Wort und breiter als der Gutter auf
   dem Handy hergibt. Silbentrennung (die Seite ist lang=de) lässt es umbrechen,
   statt die Schriftgröße gegenüber den anderen Seiten zu verkleinern;
   `break-word` fängt Browser ohne deutsches Trennwörterbuch ab. */
.ds-hero__title .h1 {
  hyphens: auto;
  overflow-wrap: break-word;
  line-height: 1.05;
}
.ds-hero__glow {
  left: 82%;
  top: 60px;
  width: 620px;
  height: 700px;
  --glow-rot: -18deg;
  --glow-dur: 31s;
  --glow-delay: -17s;
  opacity: .8;
}

/* --- Fliesstext ---------------------------------------------------------- */
.ds-body { position: relative; background: transparent; }
.ds-body__inner {
  position: relative;
  z-index: 1;
  padding-block: 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Kapitelübersicht — vier nummerierte Abschnitte, entsprechend den <h2> unten. */
.ds-toc {
  width: 860px;
  max-width: 100%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ds-toc__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--plum-main);
}
.ds-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.ds-toc a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--blue-main);
  transition: color .15s ease;
}
.ds-toc a:hover { color: #1866e8; text-decoration: underline; }

.ds-card {
  width: 860px;
  max-width: 100%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  border-radius: 24px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, .25));
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* der Anker soll nicht unter der Sticky-Navbar landen */
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.ds-card__head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--black);
}

/* Ein Unterabschnitt: Überschrift plus zugehörige Absätze/Listen. */
.ds-block { display: flex; flex-direction: column; gap: 10px; }
.ds-block h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: var(--black);
}
.ds-block p,
.ds-block li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}
.ds-block ul { display: flex; flex-direction: column; gap: 6px; }
.ds-block li { padding-left: 18px; position: relative; }
.ds-block li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-main);
}
.ds-block a {
  color: var(--blue-main);
  overflow-wrap: anywhere;
  transition: color .15s ease;
}
.ds-block a:hover { color: #1866e8; text-decoration: underline; }
.ds-block address {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}

/* Der Widerspruchs-Passus steht im Quelltext in Versalien; als Kapitälchen
   gesetzt bleibt die gesetzlich geforderte Hervorhebung erhalten, ohne dass
   Screenreader den Absatz Buchstabe für Buchstabe vorlesen. */
.ds-block p.ds-shout {
  font-variant-caps: all-small-caps;
  letter-spacing: .3px;
  font-weight: 400;
  color: var(--black);
}

@media (max-width: 860px) {
  .ds-hero__inner { padding-block: 56px 32px; }
  .ds-card { padding: 28px; gap: 26px; }
  .ds-toc { padding: 24px; }
  .ds-toc ol { flex-direction: column; gap: 8px; }
}
