.wg-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
}
.wg-banner.height--small {
  min-height: clamp(280px, 40vh, 480px);
}
.wg-banner.height--medium {
  min-height: clamp(360px, 58vh, 780px);
}
.wg-banner.height--large {
  min-height: clamp(480px, 85vh, 1080px);
}

.wg-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.wg-banner__bg img,
.wg-banner__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wg-banner__bg--bw img,
.wg-banner__bg--bw video {
  filter: grayscale(100%);
}

.wg-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.wg-banner__content {
  position: relative;
  z-index: 6;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.wg-banner__subtitle {
  margin-bottom: 0.75rem;
}

.wg-banner__title {
  margin-bottom: 1.5rem;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 1;
}

.wg-banner__button {
  margin-bottom: 1.5rem;
}

.wg-banner__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

/* ── Jump-to pills ─────────────────────────────────────────────────────────── */
.wg-banner__jump {
  margin-top: 2rem;
}

.wg-banner__jump-label {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F2D67A;
  margin-bottom: 0.6rem;
}

.wg-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.wg-banner__pill {
  display: inline-flex;
  align-items: center;
  background: #F3E9E0;
  color: #1F3642;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 25px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.wg-banner__pill:hover {
  background: #ffffff;
  color: #1F3642;
}

@media screen and (max-width: 1024px) {
  .wg-banner__content {
    padding-bottom: 2.5rem;
  }
  .wg-banner__title {
    font-size: clamp(32px, 5vw, 64px);
  }
}
@media screen and (max-width: 900px) {
  .wg-banner__content {
    padding-bottom: 2rem;
  }
  .wg-banner__pills {
    gap: 6px;
  }
}
@media screen and (max-width: 600px) {
  .wg-banner__pill {
    font-size: 11px;
    padding: 8px 16px;
  }
}
