.promo-codes-landing .zenh_vhero-block {
  /* Tuned at 1710×854 (image native). Above 1710 — caps at 800px tall, image
     fills horizontally with cover. Below 1710 — scales down proportionally with
     viewport via aspect-ratio, with a floor at 600px so it never gets squished. */
  height: auto;
  aspect-ratio: 1710 / 854;
  max-height: 800px;
  min-height: 600px;
}

.zenh_vhero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* When hero scales down (narrower width or shorter viewport), lift the image so the
   upper portion (where the main visual elements sit) stays in view. */
@media (min-width: 992px) and (max-width: 1500px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center 38%;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center 30%;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center 22%;
  }
}
@media (min-width: 992px) and (max-height: 749px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center 32%;
  }
}
@media (min-width: 992px) and (max-height: 649px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center 22%;
  }
}

/* On big widths (≥1200) with short heights — shift the image up using vh
   (scales with viewport height: shorter screen = bigger shift relative to height). */
@media (min-width: 1200px) and (max-height: 800px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center -5vh;
  }
}
@media (min-width: 1200px) and (max-height: 700px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center -10vh;
  }
}
@media (min-width: 1200px) and (max-height: 600px) {
  .promo-codes-landing .zenh_vhero-bg {
    background-position: center -15vh;
  }
}

.zenh_vhero-title-box {
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.promo-codes-landing .zenh_vhero-title-box {
  top: 170px;
  bottom: auto;
  transform: none;
}
.promo-codes-landing .zenh_vhero-title-box {
  top: calc(50% - (var(--box-info-height, 23px) + var(--promo-box-pt-desktop, 42px) + var(--promo-box-vo-desktop, 170px)) / 2);
  bottom: auto;
  transform: translate(0, -50%);
}

.zenh_vhero-badge-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}

.promo-badge {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 40px 0 14.7px;
}

.promo-badge__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100px;
  height: 23px;
  fill: #20E243;
  pointer-events: none;
}

.promo-badge__text {
  position: relative;
  z-index: 1;
  color: var(--Primary, #222);
  leading-trim: both;
  text-edge: cap;
  text-box: trim-both cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.zenh_vhero-title {
  color: var(--Shades-Dark-Side-White, #FFF);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  text-box: trim-both cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  text-shadow: 0 1px 27.1px rgba(58, 58, 58, 0.60);
  font-family: Nunito;
  font-size: 68px;
  font-style: normal;
  font-weight: 800;
  line-height: 75px;
}

.zenh_vhero-title .green {
  color: var(--Green, #69E245);
  leading-trim: both;
  text-edge: cap;
  text-box: trim-both cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 68px;
  font-style: normal;
  font-weight: 800;
  line-height: 55px;
}

.zenh_vhero-desc {
  max-width: 507px;
  margin: 32px auto 0;
  color: var(--Shades-Dark-Side-White, #FFF);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  text-box: trim-both cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.62);
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 991px) {
  /* Mobile hero scales to the 380×583 design reference. Aspect-ratio drives the height
     from the width; max-height caps at 583px AND ≤80vh so short viewports shrink the hero,
     min-height keeps narrow phones usable but allows them to go shorter than the ref. */
  .promo-codes-landing .zenh_vhero-block {
    aspect-ratio: 380 / 583;
    max-height: min(583px, 80vh);
    min-height: 380px;
  }

  .zenh_vhero-bg {
    background-position: -90% 60%;
  }

  /* Mobile title-box sits 43px below the fixed header.
     Header height = clamp(6px, 1.8vh, 11px) padding × 2 + 30px logo, so
     top = (30 + 43) + 2 × header_padding = 73px + 3.6vh, clamped to [85, 95]. */
  .promo-codes-landing .zenh_vhero-title-box {
    top: clamp(85px, calc(73px + 3.6vh), 95px);
    bottom: auto;
    transform: none;
  }

  .zenh_vhero-badge-wrap {
    margin: 0 0 16px;
  }

  .zenh_vhero-title,
  .zenh_vhero-title .green {
    font-size: 40px;
    line-height: 40px;
  }

  .zenh_vhero-desc {
    margin-top: 32px;
    font-size: 16px;
  }
}
