/* HeroSpotlight — was HeroSpotlight.module.css. The bundler's hashed class names are
   replaced by a plain c-HeroSpotlight_ prefix so the stylesheet stands alone. */

.c-HeroSpotlight_hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
}

.c-HeroSpotlight_heroInner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.c-HeroSpotlight_heroTop {
  align-self: flex-start;
}

.c-HeroSpotlight_heroTop h1,
.c-HeroSpotlight_heroBottom .dsp {
  font-size: 20vw;
}

.c-HeroSpotlight_heroBottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.c-HeroSpotlight_heroBottom p {
  max-width: 28rem;
}

.c-HeroSpotlight_intro {
  position: relative;
  width: 100%;
  height: auto;
}

.c-HeroSpotlight_introInner {
  height: auto;
}

.c-HeroSpotlight_introClip {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

.c-HeroSpotlight_videoDesktop {
  position: relative;
  width: 100%;
  max-width: 100%;
  transform: translateY(-110%) scale(0.25);
  transform-origin: center center;
  clip-path: inset(50%);
  will-change: transform, clip-path;
  --reel-radius: 1.2rem;
}

.c-HeroSpotlight_videoMobile {
  display: none;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  clip-path: inset(50%);
  will-change: clip-path;
  --reel-radius: 0.4rem;
}

.c-HeroSpotlight_videoPreview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--reel-radius);
  background-color: var(--base-200);
  overflow: hidden;
}

.c-HeroSpotlight_reelImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.c-HeroSpotlight_reelImageActive {
  opacity: 1;
}

@media (max-width: 1000px) {
  .c-HeroSpotlight_hero {
    padding-top: 5rem;
  }

  .c-HeroSpotlight_heroBottom {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 1rem;
  }

  .c-HeroSpotlight_heroBottom p {
    text-align: right;
    max-width: 22rem;
  }

  .c-HeroSpotlight_videoDesktop {
    display: none;
  }

  .c-HeroSpotlight_videoMobile {
    display: block;
  }
}
