.cc_jtahuabn_41cPxqRJHx .category-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-family, system-ui, -apple-system, sans-serif);
}

.cc_jtahuabn_41cPxqRJHx .category-hero-scroll {
  position: relative;
  width: 100%;
  max-width: none;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: none;
  overflow: hidden;
  display: flex;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

/* GPU-layer promotion is scoped to only the slides within one step of the
   active one (see index.tsx's isAdjacent) instead of every slide at once —
   applying will-change: transform to all of them permanently forced the
   browser to keep every full-viewport background image (up to 5) on its own
   composited layer simultaneously, which is what caused scroll jank/freeze
   on lower-powered/mobile devices. */
.cc_jtahuabn_41cPxqRJHx .category-hero-bg.is-adjacent {
  will-change: transform;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-bg-desktop, .cc_jtahuabn_41cPxqRJHx .category-hero-bg-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.35);
}

.cc_jtahuabn_41cPxqRJHx .category-hero-bg-mobile {
  display: none;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-trigger {
  /* Fixed vh only (no dvh) — this must stay perfectly aligned with the
     vh-based `top` offset set inline per trigger. Using dvh here would make
     the trigger's height shift as the mobile browser chrome shows/hides
     during scroll (asymmetric between scroll-up and scroll-down), causing
     IntersectionObserver's target geometry to drift and jank mid-scroll. */
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-content {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  text-align: center;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-link {
  position: relative;
  display: inline-block;
  color: #ffffff;
  opacity: 0.4;
  font-size: 36px;
  font-weight: var(--font-weight-base, 500);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  will-change: opacity;
  transition: opacity 0.5s ease-in-out, font-size 0.5s ease-in-out;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-link-active {
  opacity: 1;
  font-size: 56px;
}

.cc_jtahuabn_41cPxqRJHx .category-hero-link-badge {
  margin-left: 8px;
  font-size: 0.32em;
  font-weight: var(--font-weight-base, 500);
  letter-spacing: 0.04em;
  vertical-align: super;
}

/* Border/radius/padding/uppercase/hover-fill come from the shared
   .cta-button class (src/global.css); color is set per-instance inline
   via --cta-color/--cta-hover-text (buttonCtaStyle in index.tsx). */

/* Theme breakpoint: "Tablet/Mobile (1024px)" */
@media (max-width: 1024px) {
  .cc_jtahuabn_41cPxqRJHx .category-hero-content {
    gap: 36px;
    padding: 36px 20px;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-link {
    font-size: 28px;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-link-active {
    font-size: 44px;
  }
}

/* Theme breakpoint: "Tablet/Mobile (768px)" */
@media (max-width: 768px) {
  .cc_jtahuabn_41cPxqRJHx .category-hero-links {
    gap: 12px;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-content {
    gap: 28px;
    padding: 28px 16px;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-link {
    font-size: 22px;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-link-active {
    font-size: 34px;
  }

  /* Show the portrait mobile image (if provided) and hide the desktop one.
     :has() scopes this per-category so only ones with their own mobile
     image switch — others keep falling back to the desktop image. */
  .cc_jtahuabn_41cPxqRJHx .category-hero-bg-mobile {
    display: block;
  }

  .cc_jtahuabn_41cPxqRJHx .category-hero-bg:has(.category-hero-bg-mobile) .category-hero-bg-desktop {
    display: none;
  }
}
