@font-face {
  font-family: "EK Baumer Uniwidth";
  src: url("../assets/fonts/EKBaumerUniwidth-Bold.woff2") format("woff2"),
       url("../assets/fonts/EKBaumerUniwidth-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2b2b2a;
}

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

html, body {
  color: var(--ink);
  font-family: "EK Baumer Uniwidth", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

/* ---------- background, matches index ---------- */

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(180, 225, 255, 0.85) 0%, rgba(180, 225, 255, 0) 50%),
    radial-gradient(circle at 20% 80%, rgba(220, 200, 255, 0.75) 0%, rgba(220, 200, 255, 0) 55%),
    linear-gradient(160deg, #f1e9ff 0%, #eaf5ff 45%, #fdecf5 100%);
}

/* ---------- content ---------- */

.imprint {
  position: relative;
  padding: clamp(20px, 4vh, 52px) clamp(20px, 3vw, 48px) clamp(60px, 10vh, 120px);
  font-size: clamp(13px, 1.1vw, 19px);
  line-height: 1.2;
}

.imprint * + * {
  margin-top: clamp(16px, 2vh, 28px);
}

.imprint .list-num > li * + * {
  margin-top: 0;
}

a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a:active {
  text-decoration: none;
  background: transparent;
}

.imprint .back {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
}

.imprint .back:hover {
  text-decoration: underline;
}

.imprint address {
  font-style: normal;
}

/* ---------- lists ---------- */

.imprint ol,
.imprint ul {
  list-style: none;
  padding-left: 1.7em;
}

.imprint ol > li,
.imprint ul > li {
  position: relative;
}

.imprint ol > li::before,
.imprint ul > li::before {
  position: absolute;
  left: -1.7em;
  width: 1.7em;
}

.list-num > li::before {
  content: counter(list-item) ". ";
}

.list-alpha > li::before {
  content: counter(list-item, lower-alpha) ") ";
}

.list-alpha2 > li::before {
  content: counter(list-item, lower-alpha) counter(list-item, lower-alpha) ") ";
}

.list-bullet > li::before {
  content: "\2022";
}

@media (min-width: 1024px) {
  .imprint {
    max-width: 50%;
  }
}
