/*
  TSS minimal overrides for Maxton integration.
  Goal: keep Maxton UI intact; only prevent the absolute footer from "floating" on pages with little content.
*/

html, body {
  min-height: 100%;
}

body {
  min-height: 100vh;
}

/*
  Maxton's .page-footer is position:absolute; reserve space and enforce a minimum content height.
  70px = top header height.
*/
.main-wrapper {
  min-height: calc(100vh - 70px);
  padding-bottom: 96px;
}
