/* Finalized Explore LVE composition. Loaded after legacy styles by design. */
#home .explore-section {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(480px, 560px);
  justify-content: center;
  gap: clamp(72px, 5vw, 80px);
  align-items: center;
  min-height: 0;
  padding: clamp(56px, 4.5vw, 64px) 24px;
  overflow: hidden;
  background: #f6f7f8;
  border-top: 1px solid #e5e8ec;
  border-bottom: 1px solid #e5e8ec;
}

#home .explore-section::before,
#home .explore-section::after,
#home .explore-teaser-media::after {
  display: none;
}

#home .explore-intro {
  max-width: 540px;
  padding: 0;
}

#home .explore-intro .eyebrow {
  color: #987211;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
}

#home .explore-intro h2 {
  max-width: 540px;
  margin: 0 0 16px;
  color: #15161a;
  font-size: clamp(44px, 3vw, 48px);
  font-weight: 620;
  line-height: 1.01;
  letter-spacing: -.035em;
  text-wrap: balance;
}

#home .explore-intro h2 span { display: block; white-space: nowrap; }

#home .explore-intro > p:not(.eyebrow) {
  max-width: 27rem;
  color: #626975;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.55;
}

#home .explore-inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #987211;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

#home .explore-inline-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

#home .explore-inline-link span {
  transition: transform 180ms ease;
}

#home .explore-inline-link:hover::after,
#home .explore-inline-link:focus-visible::after { transform: scaleX(1); }

#home .explore-inline-link:hover span,
#home .explore-inline-link:focus-visible span { transform: translateX(4px); }

#home .explore-detail-lede,
#home .explore-detail-points,
#home .explore-media-caption {
  display: none;
}

#home .explore-teaser-media {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f6f7f8;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 27, 35, .05);
}

#home .explore-teaser-media::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 32px;
  display: block;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #f6f7f8 0%, rgba(246, 247, 248, 0) 100%);
}

#home .explore-teaser-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: inherit;
}

#home .compare-section {
  padding-top: clamp(84px, 7vw, 112px);
  background: #fff;
}

@media (max-width: 1200px) and (min-width: 981px) {
  #home .explore-section {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
    gap: clamp(56px, 5vw, 64px);
  }
  #home .explore-intro h2 { font-size: clamp(40px, 3.34vw, 42px); }
  #home .explore-intro h2 span { white-space: normal; }
}

@media (max-width: 980px) {
  #home .explore-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 0;
  }

  #home .explore-intro h2 { max-width: 12ch; }
  #home .explore-intro h2 span { white-space: normal; }

  #home .explore-teaser-media {
    width: calc(100% + 48px);
    height: auto;
    margin: 0 -24px;
    aspect-ratio: 3 / 2;
    justify-content: center;
  }

  #home .explore-teaser-media img {
    width: 100%;
    height: 100%;
    max-width: none;
  }
}
