/* ==========================================================================
   pulb.werbung — Rechtsseiten (Impressum, Datenschutz)
   Bewusst schlicht: hier zaehlt Lesbarkeit, nicht Inszenierung.
   ========================================================================== */

.legal {
  max-width: 74ch;
  margin-inline: auto;
  padding: 16vh var(--gutter) 12vh;
}

.legal__back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-bottom: 6vh;
  font-size: clamp(.72rem, .8vw, .9rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color var(--t-fast) var(--ease-out);
}

.legal__back::before {
  content: '';
  width: 2.4em;
  height: 1px;
  background: currentColor;
  transition: width var(--t-med) var(--ease-out);
}

.legal__back:hover { color: var(--accent); }
.legal__back:hover::before { width: 3.4em; }

.legal h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 1.2em;
}

.legal h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.015em;
  font-weight: 500;
  color: var(--fg);
  margin: 3.2em 0 .9em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
}

.legal h2:first-of-type { border-top: 0; padding-top: 0; }

.legal h3 {
  font-size: clamp(.95rem, 1.1vw, 1.1rem);
  font-weight: 600;
  color: var(--mark);
  margin: 2em 0 .5em;
}

.legal p,
.legal li {
  font-size: clamp(.88rem, 1vw, 1.02rem);
  line-height: 1.72;
  color: var(--muted-2);
}

.legal p { margin-bottom: 1.1em; }

.legal ul {
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
}

.legal ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .5em;
}

.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: .55em;
  height: 1px;
  background: var(--accent);
}

.legal a {
  color: var(--mark);
  text-decoration: underline;
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast) var(--ease-out);
}

.legal a:hover { color: var(--accent); }

.legal address {
  font-style: normal;
  color: var(--mark);
  line-height: 1.72;
  margin-bottom: 1.4em;
}

/* Deutlich markierte Luecke — muss vor dem Livegang gefuellt werden */
.todo {
  display: inline-block;
  padding: .1em .55em;
  background: rgba(0, 150, 206, .14);
  border-bottom: 1px solid var(--accent);
  color: #cfe9f5;
  font-size: .92em;
}

.legal__hint {
  margin-top: 5em;
  padding: 1.4em 1.6em;
  border-left: 2px solid var(--accent);
  background: var(--surface);
}

.legal__hint p {
  margin: 0;
  font-size: clamp(.8rem, .9vw, .95rem);
  color: var(--mark);
}
