/* === Sticky footer applied site-wide === */
html, body { height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }
footer { margin-top: auto; }
/* End sticky footer */

/* === Header overlap fix + sticky footer (safe site-wide) === */
:root { --header-h: 0px; }
header, .site-header {
  position: sticky;
  top: 0;
  z-index: 9999;            /* above cards */
  background: #fff;         /* ensure it's opaque */
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
main { padding-top: var(--header-h); }
.job-card, .job, .job-item, .listing-card, .card {
  z-index: auto !important; /* prevent being above header */
}
/* Sticky footer from earlier */
html, body { height: 100%; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
footer { margin-top: auto; }
/* End */
