.page-hero {
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
  color: var(--white);
}
.page-hero__stage {
  position: relative;
  overflow: hidden;
  background: #2f6a6a;
}
.page-hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__background-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2f6a6a 0%, rgba(47, 106, 106, 0) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem clamp(2rem, 4vw, 4rem);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page-hero__copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: 890px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.page-hero--with-presented-by .page-hero__copy {
  gap: 2rem;
}
.page-hero__title {
  margin: 0;
  color: #f9f6f1;
  font-family: var(--heading-font);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}
.page-hero__description {
  margin: 0;
  color: var(--white);
  font-family: var(--body-font);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 890px;
}
.page-hero__description > *:first-child {
  margin-top: 0;
}
.page-hero__description > *:last-child {
  margin-bottom: 0;
}
.page-hero__presented-by {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 890px;
}
.page-hero__presented-by-label, .page-hero__presented-by-text {
  margin: 0;
  color: #f9f6f1;
  font-family: var(--body-font);
  font-size: var(--font-size-p2);
  font-style: normal;
  line-height: 1.4;
  text-wrap: pretty;
}
.page-hero__presented-by-label {
  font-weight: 800;
  text-transform: uppercase;
}
.page-hero__presented-by-text {
  font-weight: 400;
}
.page-hero__image {
  flex: 0 1 645px;
  width: min(645px, 40vw);
  box-sizing: border-box;
  border: 8px solid var(--white);
  overflow: hidden;
  aspect-ratio: 645.48/391.2;
  background: rgba(255, 255, 255, 0.08);
}
.page-hero__image-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero--no-image .page-hero__copy {
  max-width: 890px;
}
.page-hero--title-only .page-hero__content {
  align-items: center;
}
.page-hero--title-only .page-hero__copy {
  gap: 0;
}
.page-hero--sailboat .page-hero__background-image {
  object-position: center center;
}
.page-hero--river .page-hero__background-image {
  object-position: center center;
}
.page-hero__breadcrumbs {
  position: relative;
  background: var(--beige);
  color: var(--black);
  padding: 1rem 0;
}
.page-hero__breadcrumbs-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.75rem;
}
.page-hero #breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  color: var(--black);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1;
}
.page-hero #breadcrumbs a,
.page-hero #breadcrumbs span {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}
.page-hero #breadcrumbs a:first-of-type {
  font-weight: 700;
}
.page-hero #breadcrumbs .breadcrumb_last {
  font-weight: 400;
}
.page-hero .page-hero__breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: translateY(1px);
  font-size: 0.6875rem;
  line-height: 1;
}
.page-hero .page-hero__breadcrumb-separator i {
  display: block;
  line-height: 1;
}
@media (max-width: 960px) {
  .page-hero__content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .page-hero__copy, .page-hero__image {
    width: 100%;
    max-width: none;
  }
  .page-hero__image {
    flex-basis: auto;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767px) {
  .page-hero {
    margin-bottom: 3rem;
  }
  .page-hero__content {
    gap: 1.5rem;
  }
  .page-hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  .page-hero__description {
    font-size: 1.125rem;
    line-height: 1.45;
  }
}
