/* Öffentlicher Footer — portiert aus dem Footer-Abschnitt von docs/design-docs/campus-apero-landingpage.html
   (.footer / .footer-inner dort → .public-footer / .public-footer__inner hier). */
.public-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--campus-night);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.public-footer__inner {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(180px, 0.55fr);
  gap: 34px;
}

.public-footer h3 {
  color: var(--white);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.public-footer p,
.public-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.public-footer p {
  margin-top: 12px;
}

.public-footer a {
  text-decoration: none;
}

.public-footer a:hover {
  text-decoration: underline;
}

.public-footer ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
}

@media (max-width: 900px) {
  .public-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .public-footer__inner {
    width: min(100vw - 28px, 460px);
  }
}

/* Statische Seiten (Impressum, Datenschutz, Einwilligung, 404). */
.static-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 64px 20px;
  text-align: center;
}

.static-page h1 {
  font-family: var(--font-highlight);
  font-variation-settings: "opsz" 72;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.static-page p {
  color: var(--campus-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
}

.static-page form {
  margin: 28px 0 0;
}

.static-page-button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: var(--apero-coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-coral);
}
