.clip-hero-art {
  width: min(calc(100% - 2.5rem), 76rem);
  margin: clamp(-2.5rem, -4vw, -1.5rem) auto clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.clip-hero-art::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 22%;
  background: #2563eb;
  filter: blur(64px);
  opacity: .18;
  z-index: -1;
}

.clip-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid color-mix(in oklab, #eaf0f8 18%, transparent);
  box-shadow: 0 28px 80px rgb(2 8 23 / .45), inset 0 1px 0 rgb(255 255 255 / .12);
}

@media (max-width: 640px) {
  .clip-hero-art {
    width: calc(100% - 1.5rem);
    margin-top: -1.25rem;
    margin-bottom: 3rem;
  }

  .clip-hero-art img { border-radius: 14px; }
}
