.nb-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 700px;
  color: #fff;
  background: var(--nb-ink);
}

@media (max-width: 991.98px) {
  .nb-hero {
    min-height: 560px;
  }
}

@media (max-width: 575.98px) {
  .nb-hero {
    min-height: 420px;
  }
}

.nb-hero__photo {
  position: absolute;
  filter: saturate(1.05);
  background-image: var(--nb-hero-bg, none);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  inset: 0;
}

[dir="rtl"] .nb-hero__photo {
  background-position: left;
}

.nb-hero__photo::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(13, 26, 28, 0.2) 0%, rgba(13, 26, 28, 0) 32%, rgba(13, 26, 28, 0.55) 100%);
  inset: 0;
}

[dir="rtl"] .nb-hero__photo::after {
  background: linear-gradient(-180deg, rgba(13, 26, 28, 0.2) 0%, rgba(13, 26, 28, 0) 32%, rgba(13, 26, 28, 0.55) 100%);
}

.nb-hero__shade-h {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(13, 26, 28, 0.85) 0%, rgba(13, 26, 28, 0.85) 55%, rgba(13, 26, 28, 0) 85%);
  inset: 0;
}

[dir="rtl"] .nb-hero__shade-h {
  background: linear-gradient(to left, rgba(13, 26, 28, 0.85) 0%, rgba(13, 26, 28, 0.85) 55%, rgba(13, 26, 28, 0) 85%);
}

.nb-hero__shade-v {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(13, 26, 28, 0) 0%, rgba(13, 26, 28, 0) 55%, rgba(13, 26, 28, 0.45) 100%);
  inset: 0;
}

.nb-hero__pattern {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  inset: 0;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 85%);
}

.nb-hero__pattern::before {
  position: absolute;
  content: "";
  transform: rotate(-22deg);
  opacity: 0.32;
  background-image: var(--nb-hero-pattern, none);
  background-repeat: repeat;
  background-size: 100px auto;
  inset: -40%;
}

[dir="rtl"] .nb-hero__pattern::before {
  transform: rotate(22deg);
}

.nb-hero__chrome {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-block: 64px 56px;
}

@media (max-width: 991.98px) {
  .nb-hero__chrome {
    padding-block: 48px 48px;
  }
}

@media (max-width: 575.98px) {
  .nb-hero__chrome {
    padding-block: 36px 36px;
  }
}

.nb-hero__title {
  max-width: 920px;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--nb-font-display);
  font-size: clamp(5rem, 14vw, 200px);
  font-weight: 600;
  font-style: normal;
  line-height: 0.82;
}

.nb-hero__title em,
.nb-hero__title .nb-em {
  color: var(--nb-amber-500);
  font-weight: inherit;
  font-style: normal;
}

.nb-hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
  gap: 48px;
}

.nb-hero__lede {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--nb-font-body);
  font-size: 16px;
  line-height: 1.6;
}

.nb-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  min-width: 160px;
  min-height: 48px;
  gap: 12px;
}
