/* Pseudo-Klassen zur Positionierung von Text */
.right {
    text-align: right;
}

.central {
    text-align: center;
}

/* LAYOUT — Einheitliches schmales Lesefenster */
body > header,
body > main,
body > footer {
  max-width: 70ch;
}

/* hr unter dem Header ein wenig pimpen */
header + hr {
  border: none;
  height: 1px;
  background-color: var(--pico-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Footer: kleinere Schrift, gedämpfte Farbe — wirkt als Abschluss */
body > footer {
  font-size: 0.825rem;
  color: var(--pico-muted-color);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.notice {
  border-left: 4px solid var(--pico-primary);
  padding: 1rem 1.25rem;
}
.notice-success {
  --pico-primary: var(--pico-color-green-550);
  background-color: var(--pico-color-green-100);
}
.notice-error {
  --pico-primary: var(--pico-color-red-550);
  background-color: var(--pico-color-red-100);
}
.portrait {
  margin: 2rem auto;
  text-align: center;
}

.portrait img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 320px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.portrait figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--pico-muted-color);
}

@media (max-width: 480px) {
  .portrait img {
    width: 220px;
  }
}

