/**
 * Footer dauerhaft am unteren Bildschirmrand (alle öffentlichen Seiten).
 * Der scrollbare Inhalt endet oberhalb der Fußzeile.
 */
:root {
  --site-footer-spacer: max(
    3.75rem,
    calc(0.65rem + 0.82rem * 1.45 + 0.65rem + 3px + env(safe-area-inset-bottom, 0px))
  );
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  min-height: 100dvh;
  padding-bottom: var(--site-footer-spacer);
}

.site-intern-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
}
