/**
 * Global footer layout for all public pages.
 * - Long pages: footer is after content (no overlap).
 * - Short pages: wrapper stretches to viewport and footer sits at bottom.
 */
body.arbicar-site-footer-space .ac-page-shell {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--topbar-offset, 72px));
  min-height: calc(100dvh - var(--topbar-offset, 72px));
}

body.arbicar-site-footer-space .ac-page-shell > main#main-content {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

body.arbicar-site-footer-space .ac-page-shell > footer.site-footer,
body.arbicar-site-footer-space .ac-page-shell > .site-footer {
  margin-top: auto !important;
  position: static !important;
  left: auto;
  right: auto;
  bottom: auto !important;
  z-index: auto;
}
