.zori-inner-hero {
  position: relative;
  min-height: 690px;
  height: 76svh;
  max-height: 780px;
  display: block;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background: #0d3345;
  color: #fff;
  width: 100%;
  margin: 0;
}

.zori-inner-hero::before,
.zori-inner-hero::after {
  content: none !important;
}

.zori-inner-hero,
.zori-inner-hero * {
  box-sizing: border-box;
}

.zori-inner-hero__media,
.zori-inner-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.zori-inner-hero__media {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: var(--zori-hero-position, center 40%);
  background: #0d3345;
}

.zori-inner-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 24, 39, 0.9) 0%, rgba(0, 24, 39, 0.64) 45%, rgba(0, 24, 39, 0.14) 78%),
    linear-gradient(0deg, rgba(0, 24, 39, 0.94) 0%, rgba(0, 24, 39, 0.08) 48%);
}

.zori-inner-hero__shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  min-height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px 0 32px;
}

.zori-inner-hero__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.4;
}

.zori-inner-hero__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.zori-inner-hero__breadcrumbs a:hover {
  color: #fff;
}

.zori-inner-hero .zori-inner-hero__copy {
  align-self: center;
  width: auto;
  max-width: 760px;
  margin: 0;
  padding: 44px 0 36px;
}

.zori-inner-hero .zori-inner-hero__kicker {
  margin: 0;
  color: #f1dab4;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zori-inner-hero .zori-inner-hero__title {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff;
  font-family: "Zori Sans", Arial, sans-serif;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.zori-inner-hero .zori-inner-hero__title--long {
  font-size: 86px;
}

.zori-inner-hero .zori-inner-hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.zori-inner-hero .zori-inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zori-inner-hero .zori-inner-hero__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #f1dab4;
  border-radius: 4px;
  background: rgba(0, 30, 47, 0.2);
  color: #f1dab4 !important;
  font-family: "Zori Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.zori-inner-hero .zori-inner-hero__button--primary {
  background: #f1dab4 !important;
  color: #001e2f !important;
}

.zori-inner-hero .zori-inner-hero__button:hover {
  opacity: 0.78;
}

.zori-inner-hero .zori-inner-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.zori-inner-hero__facts > span,
.zori-inner-hero__facts > div {
  min-width: 0;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.zori-inner-hero__facts > div {
  display: block;
  grid-template-columns: none;
  gap: 0;
  border-bottom: 0;
}

.zori-inner-hero__facts > span + span,
.zori-inner-hero__facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.zori-inner-hero__facts dt,
.zori-inner-hero__facts dd {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.zori-inner-hero__facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.zori-inner-hero__facts dd {
  color: #fff;
  font-weight: 600;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 1020px) {
  .zori-inner-hero .zori-inner-hero__title {
    font-size: 76px;
  }

  .zori-inner-hero .zori-inner-hero__title--long {
    font-size: 68px;
  }
}

@media screen and (max-width: 720px) {
  .zori-inner-hero {
    min-height: 690px;
    height: auto;
    max-height: none;
  }

  .zori-inner-hero__media {
    object-position: var(--zori-hero-mobile-position, var(--zori-hero-position, 57% center));
  }

  .zori-inner-hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 24, 39, 0.82) 0%, rgba(0, 24, 39, 0.28) 100%),
      linear-gradient(0deg, rgba(0, 24, 39, 0.96) 0%, rgba(0, 24, 39, 0.22) 66%);
  }

  .zori-inner-hero__shell {
    width: min(100% - 28px, 1160px);
    min-height: max(760px, 82svh);
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .zori-inner-hero .zori-inner-hero__copy {
    padding: 28px 0 22px;
  }

  .zori-inner-hero .zori-inner-hero__title {
    font-size: 54px;
  }

  .zori-inner-hero .zori-inner-hero__title--long {
    font-size: 38px;
  }

  .zori-inner-hero .zori-inner-hero__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .zori-inner-hero .zori-inner-hero__actions,
  .zori-inner-hero .zori-inner-hero__button {
    width: 100%;
  }

  .zori-inner-hero .zori-inner-hero__actions {
    margin-top: 24px;
  }

  .zori-inner-hero .zori-inner-hero__facts {
    grid-template-columns: 1fr;
  }

  .zori-inner-hero__facts > span,
  .zori-inner-hero__facts > div {
    padding: 9px 10px;
    text-align: left;
  }

  .zori-inner-hero__facts > span + span,
  .zori-inner-hero__facts > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-left: 0;
  }

  .zori-inner-hero__facts dt,
  .zori-inner-hero__facts dd {
    display: inline;
  }

  .zori-inner-hero__facts dt {
    margin-right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zori-inner-hero .zori-inner-hero__button {
    transition: none;
  }
}
