/* =========================
   Global layout & document flow
========================= */

html {
  height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;

  display: flex;
  flex-direction: column;

  min-height: 100vh;
}

/* Main fyller tillgänglig höjd */
.site-main {
  flex: 1 0 auto;
}

/* Footer ligger sist utan att täcka innehåll */
.site-footer {
  flex-shrink: 0;
}