.wcg-scroll-hero {
  --wcg-hero-ink: #001b38;
  --wcg-hero-accent: #e11a29;
  --wcg-hero-bg: #ffffff;
  --wcg-hero-progress: 0;
  --wcg-hero-header-offset: 136px;
  position: relative;
  height: 250vh;
  background: var(--wcg-hero-bg);
}

.wcg-scroll-hero,
.wcg-scroll-hero * {
  box-sizing: border-box;
}

.wcg-scroll-hero__sticky {
  position: sticky;
  top: var(--wcg-hero-header-offset);
  height: calc(100vh - var(--wcg-hero-header-offset));
  min-height: 480px;
  overflow: hidden;
  background: var(--wcg-hero-bg);
}

.wcg-scroll-hero__media {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(95vw, calc((100vh - var(--wcg-hero-header-offset)) * 0.95 * 16 / 9));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 32px;
  background: var(--wcg-hero-ink);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2632);
  transform-origin: center;
  will-change: transform, opacity, border-radius;
}

.wcg-scroll-hero__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.wcg-scroll-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(64px, 10vh, 108px) 24px 54px;
  color: #001b38 !important;
  text-align: center;
  pointer-events: none;
}

.wcg-scroll-hero__heading {
  margin: 0 !important;
  padding: 0 !important;
  color: #001b38 !important;
  font-family: "Avenir Next", Avenir, Helvetica, Arial, sans-serif !important;
  font-size: 88px !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.06 !important;
  text-transform: uppercase !important;
}

.wcg-scroll-hero__line {
  display: block;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  color: #001b38 !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
}

.wcg-scroll-hero.is-entered .wcg-scroll-hero__line {
  opacity: 1;
  transform: translateY(0);
}

.wcg-scroll-hero.is-entered .wcg-scroll-hero__line--two {
  transition-delay: 280ms;
}

.wcg-scroll-hero__dot {
  color: #e11a29 !important;
}

.wcg-scroll-hero__body {
  width: min(100%, 920px);
  margin: clamp(26px, 3.2vh, 34px) 0 0 !important;
  padding: 0 !important;
  color: #001b38 !important;
  font-family: "Avenir Next", Avenir, Helvetica, Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms 650ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.wcg-scroll-hero.is-entered .wcg-scroll-hero__body {
  opacity: 1;
  transform: translateY(0);
}

.wcg-scroll-hero__cue {
  position: absolute;
  left: 50%;
  top: 72%;
  bottom: auto;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 0;
  border: 0;
  background: transparent;
  color: #e11a29 !important;
  font-family: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 700ms 1.3s ease;
}

.wcg-scroll-hero.is-entered .wcg-scroll-hero__cue {
  opacity: 1;
}

.wcg-scroll-hero__cue-line {
  width: 1px;
  height: clamp(34px, 5vh, 48px);
  background: currentColor;
}

.wcg-scroll-hero__cue:focus-visible {
  outline: 3px solid var(--wcg-hero-accent);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .wcg-scroll-hero {
    height: 220vh;
  }

  .wcg-scroll-hero__sticky {
    min-height: 440px;
  }

  .wcg-scroll-hero__media {
    width: min(94vw, calc((100vh - var(--wcg-hero-header-offset)) * 0.9 * 16 / 9));
    transform: translate(-50%, -50%) scale(0.8511);
  }

  .wcg-scroll-hero__content {
    padding-top: clamp(44px, 8vh, 72px);
  }

  .wcg-scroll-hero__heading {
    font-size: clamp(2.2rem, 10.5vw, 3.6rem);
    line-height: 1.08;
  }

.wcg-scroll-hero__body {
    width: min(100%, 530px);
    font-size: 0.875rem;
  }

  .wcg-scroll-hero__heading {
    font-size: clamp(35px, 10.5vw, 58px) !important;
  }

  .wcg-scroll-hero__body {
    font-size: 14px !important;
  }

  .wcg-scroll-hero__body br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wcg-scroll-hero {
    height: auto;
    padding: 96px 24px 48px;
  }

  .wcg-scroll-hero__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    top: auto;
  }

  .wcg-scroll-hero__content {
    position: relative;
    inset: auto;
    min-height: 420px;
    padding: 40px 0 96px;
  }

  .wcg-scroll-hero__line,
  .wcg-scroll-hero__body {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wcg-scroll-hero__cue {
    display: none;
  }

  .wcg-scroll-hero__media {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }
}
