/* Show The Legend's complete portrait elevation with a premium blurred backdrop. */
.detail-hero.full-elevation-hero::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(20,18,21,.6), rgba(20,18,21,.12)), var(--elevation-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  transform: scale(1.08);
}
.detail-hero.full-elevation-hero > img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: 76% center;
  transform: none;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.32));
}
.detail-hero.full-elevation-hero .detail-hero-overlay {
  z-index: 2;
  background: linear-gradient(90deg, rgba(17,15,18,.82) 0%, rgba(17,15,18,.48) 35%, rgba(17,15,18,.08) 68%, rgba(17,15,18,.2) 100%);
}
.detail-hero.full-elevation-hero .detail-hero-content {
  z-index: 3;
  right: 48%;
  bottom: 9%;
}
.detail-hero.full-elevation-hero .detail-hero-content h1 { font-size: clamp(64px,8vw,118px); }
@media (max-width: 700px) {
  .detail-hero.full-elevation-hero > img { object-position: center 42%; filter: drop-shadow(0 12px 30px rgba(0,0,0,.28)); }
  .detail-hero.full-elevation-hero .detail-hero-overlay { background: linear-gradient(180deg,rgba(17,15,18,.12) 18%,rgba(17,15,18,.88) 76%); }
  .detail-hero.full-elevation-hero .detail-hero-content { right: 6%; bottom: 6%; }
  .detail-hero.full-elevation-hero .detail-hero-content h1 { font-size: 58px; }
}
