/* ===== TRUE FULL-WIDTH HERO (WILD APRICOT SAFE) ===== */

/* Kill horizontal scroll caused by WA containers */
body {
  overflow-x: hidden;
}

/* Full-width hero breakout */
.full-width-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;

  /* THIS is the critical fix */
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding-left: 0 !important;
  padding-right: 0 !important;

  box-sizing: border-box;
  overflow: hidden;
}

/* Background behavior */
.full-width-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Stop WA inner containers from re-centering */
.full-width-hero .container,
.full-width-hero .content,
.full-width-hero .zone-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Make background hero clickable */
.full-width-hero {
  position: relative;
}

