/* Reset, Typografie, App-Layout */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pp-topbar-h) + 1rem);
}

body {
  background: var(--pp-white);
  color: var(--pp-dark-blue);
  font-family: var(--pp-font-body);
  font-size: var(--pp-body-m);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--pp-purple);
  outline-offset: 3px;
  border-radius: 4px;
}

.pp-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.pp-skip {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--pp-purple); color: #fff; padding: .75rem 1.25rem;
  border-radius: var(--pp-radius-chip); font-family: var(--pp-font-label); font-weight: 700;
  text-decoration: none;
}
.pp-skip:focus { top: 1rem; }

/* ---------- Typografie ---------- */
.pp-h-xl, .pp-h-m, .pp-h-s, .pp-quote {
  font-family: var(--pp-font-display);
  font-variation-settings: "opsz" 14, "wdth" 100;
  color: var(--pp-dark-blue);
  text-wrap: balance;
}
.pp-h-xl { font-size: var(--pp-h-xl); font-weight: 800; line-height: 1.07; }
.pp-h-m { font-size: var(--pp-h-m); font-weight: 800; line-height: 1.11; }
.pp-h-s { font-size: var(--pp-h-s); font-weight: 700; line-height: 1.14; }

.pp-body-l { font-size: var(--pp-body-l); line-height: 1.4; }
.pp-body-m { font-size: var(--pp-body-m); line-height: 1.35; }

/* Unterzeile: Montserrat Bold 26, lila */
.pp-kicker {
  font-family: var(--pp-font-label);
  font-variation-settings: "opsz" 14;
  font-size: var(--pp-kicker);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--pp-purple);
}
/* Unterzeile: Montserrat Bold 24, lila */
.pp-lead-accent {
  font-size: var(--pp-body-m);
  font-weight: 700;
  line-height: 1.3;
  color: var(--pp-purple);
}

.pp-brand { font-weight: 700; color: var(--pp-purple); }

.pp-text > * + * { margin-top: 1.25em; }
.pp-text p, .pp-text li { text-wrap: pretty; }

.pp-list { list-style: none; }
.pp-list > li { position: relative; padding-left: 1.5em; }
.pp-list > li::before {
  content: "";
  position: absolute;
  left: .45em; top: .62em;
  width: .2em; height: .2em;
  border-radius: 50%;
  background: var(--pp-purple);
}
.pp-list > li + li { margin-top: 1em; }
.pp-list strong { font-weight: 600; }

.pp-footnote { font-size: var(--pp-footnote-m); line-height: 1.3; color: var(--pp-ink); }

/* ---------- App-Shell ---------- */
.pp-shell { min-height: 100vh; }

.pp-page {
  width: 100%;
  max-width: var(--pp-max);
  margin-inline: auto;
  padding: clamp(1.5rem, 1rem + 2vw, 3rem) var(--pp-pad) clamp(3rem, 2rem + 4vw, 5rem);
}
.pp-page__head { max-width: 62rem; }

/* Mindestabstand zwischen allen Abschnitten einer Seite */
.pp-page > * + * { margin-top: 90px; }
.pp-page__head .pp-kicker { margin-top: clamp(.75rem, .5rem + .6vw, 1.25rem); }
.pp-page__head .pp-body-l { margin-top: clamp(.75rem, .5rem + .8vw, 1.5rem); }

.pp-stack > * + * { margin-top: clamp(1rem, .75rem + 1.2vw, 1.5rem); }

@media (min-width: 1024px) {
  .pp-shell {
    display: grid;
    grid-template-columns: var(--pp-sidebar-w) minmax(0, 1fr);
    align-items: start;
  }
}
