.aboutus-hero {
  position: relative;
  min-height: clamp(56vh, 72vh, 88vh);
  display: flex;
  align-items: center;
  background: var(--nv-blue);
  overflow: hidden;
}
.aboutus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.aboutus-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  z-index: 1;
}
.aboutus-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.aboutus-hero-inner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  color: var(--nv-white);
}
.aboutus-hero-inner.glass {
  --context-bg: var(--nv-blue-lighter);
}
.aboutus-hero-inner h1,
.aboutus-hero-inner p {
  color: var(--nv-white);
}
.aboutus-hero-lead {
  opacity: 0.95;
}
.aboutus-hero-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .aboutus-hero {
    min-height: var(--vh-100);
  }
  .aboutus-hero::before {
    background-image: var(--bg-mobile);
  }
  .aboutus-hero-inner {
    max-width: 100%;
    padding-inline: var(--space-sm);
  }
}
