/* Sticky footer: main grows so footer sits at the bottom when content is short */
html {
  height: 100%;
}

body.site-layout {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

body.site-layout > main {
  flex: 1 0 auto;
}

body.site-layout > footer {
  flex-shrink: 0;
}
