.outputs-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(34rem, 62vw, 48rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: calc(50% - 50vw);
  padding: clamp(6rem, 12vw, 10rem) max(1.5rem, calc((100vw - var(--content)) / 2)) clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.outputs-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.outputs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.93) 0%, rgba(7, 21, 33, 0.80) 42%, rgba(7, 21, 33, 0.50) 68%, rgba(7, 21, 33, 0.30) 100%),
    linear-gradient(180deg, rgba(7, 21, 33, 0.18) 0%, rgba(7, 21, 33, 0.13) 50%, rgba(7, 21, 33, 0.56) 100%);
  pointer-events: none;
}

.outputs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 16% 45%, rgba(28, 115, 129, 0.17), transparent 36rem);
  pointer-events: none;
}

.outputs-hero .eyebrow,
.outputs-hero h1,
.outputs-hero .lede {
  position: relative;
  z-index: 3;
}

.outputs-hero h1 {
  max-width: 10ch;
  text-shadow: 0 0.08em 0.4em rgba(0, 0, 0, 0.28);
}

.outputs-hero .lede {
  max-width: 42rem;
  color: rgba(224, 233, 239, 0.84);
  text-shadow: 0 0.06em 0.3em rgba(0, 0, 0, 0.32);
}

.research-infrastructure {
  margin-top: 2.25rem;
  padding: clamp(1.25rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(97, 219, 200, 0.04), rgba(255, 255, 255, 0.018));
}

.research-infrastructure-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.infrastructure-label {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.research-infrastructure h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}

.research-infrastructure > p {
  max-width: 48rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

@media (max-width: 52rem) {
  .outputs-hero {
    min-height: 38rem;
  }

  .outputs-hero-image {
    object-position: 66% center;
  }

  .outputs-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 21, 33, 0.95) 0%, rgba(7, 21, 33, 0.85) 58%, rgba(7, 21, 33, 0.52) 100%),
      linear-gradient(180deg, rgba(7, 21, 33, 0.23) 0%, rgba(7, 21, 33, 0.31) 58%, rgba(7, 21, 33, 0.70) 100%);
  }
}

@media (max-width: 40rem) {
  .outputs-hero {
    min-height: 34rem;
  }

  .outputs-hero-image {
    object-position: 72% center;
  }

  .research-infrastructure-head {
    flex-direction: column;
    gap: 0.8rem;
  }
}
