:root {
  --inner-hero-height: 300px;
  --inner-hero-inline-space: 24px;
  --inner-hero-block-space: 36px;
}

body.is-about .corporate-header {
  position: sticky;
  inset: auto;
  background: var(--corp-navy);
}

.inner-page-hero {
  position: relative;
  display: grid;
  min-height: var(--inner-hero-height);
  overflow: hidden;
  padding: 0;
  background-color: var(--corp-navy);
  color: #fff;
}

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

.inner-page-hero__image {
  object-fit: cover;
}

.inner-page-hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 16, 36, .96) 0%, rgba(2, 16, 36, .82) 38%, rgba(2, 16, 36, .25) 72%, rgba(2, 16, 36, .38) 100%);
}

.inner-page-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(1400px, calc(100% - (var(--inner-hero-inline-space) * 2)));
  min-height: var(--inner-hero-height);
  margin-inline: auto;
  padding: var(--inner-hero-block-space) 0;
}

.inner-page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.inner-page-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 760px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 750;
}

.inner-page-hero__breadcrumb a {
  color: #65d49a;
}

.inner-page-hero__breadcrumb a:hover,
.inner-page-hero__breadcrumb a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.inner-page-hero__breadcrumb span[aria-current="page"] {
  overflow: hidden;
  max-width: min(520px, 65vw);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inner-page-hero__intro {
  max-width: 540px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.55;
}

.brand-hero,
.event-detail-hero,
.product-detail-hero {
  background: linear-gradient(115deg, var(--corp-navy), var(--corp-navy-2));
}

.brands-page .product-catalog-page {
  padding-top: 36px;
}

.events-page > .event-detail {
  padding-top: 40px;
}

@media (max-width: 920px) {
  :root {
    --inner-hero-height: 270px;
    --inner-hero-inline-space: 16px;
    --inner-hero-block-space: 30px;
  }

  body.is-about .corporate-header {
    position: sticky;
  }
}

@media (max-width: 640px) {
  :root {
    --inner-hero-height: 250px;
    --inner-hero-block-space: 26px;
  }

  .inner-page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .inner-page-hero__breadcrumb span[aria-current="page"] {
    max-width: 58vw;
  }
}
