/* NSG Page Header */

.nsg-page-header {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 56px 0 52px;
  width: 100%;
}

.nsg-page-header__inner {
  text-align: center;
  color: #fff;
}

.nsg-page-header__heading {
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.nsg-page-header__body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.nsg-page-header__body p {
  margin: 0 0 1em;
}

.nsg-page-header__body p:last-child {
  margin-bottom: 0;
}

/* iOS/Safari doesn't support background-attachment: fixed on elements — fall back to scroll */
@supports (-webkit-overflow-scrolling: touch) {
  .nsg-page-header {
    background-attachment: scroll;
  }
}

@media (max-width: 700px) {
  .nsg-page-header {
    background-attachment: scroll;
    padding: 40px 0 36px;
  }

  .nsg-page-header__heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}
