/* Trial 027 — real media element for the approved Tokyo Jones hero. */
.hero {
  isolation: isolate;
  overflow: hidden;
  background: #070308 !important;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 3, 8, .92) 0%, rgba(7, 3, 8, .63) 40%, rgba(7, 3, 8, .08) 72%);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .hero-media::after {
    background: linear-gradient(180deg, rgba(6, 2, 7, .08) 10%, rgba(6, 2, 7, .18) 48%, rgba(6, 2, 7, .96) 86%);
  }

  .hero-media img {
    object-position: center top;
  }
}
