.reusable-hero {
  --reusable-hero-bg: #000000;
  --reusable-hero-navy: #082030;
  --reusable-hero-gold: #c8a46a;
  --reusable-hero-aqua: #8fd3d1;
  --reusable-hero-muted: #bfc5ca;
  --reusable-hero-white: #ffffff;

  position: relative;
  min-height: 767px;
  overflow: hidden;
  border-bottom: 30px solid var(--reusable-hero-gold);
  border-bottom-right-radius: 110px;
  border-bottom-left-radius: 110px;
  background: var(--reusable-hero-bg);
  color: var(--reusable-hero-white);
}

.reusable-hero__background,
.reusable-hero__background picture,
.reusable-hero__background-image,
.reusable-hero__overlay {
  position: absolute;
  inset: 0;
}

.reusable-hero__background {
  z-index: 0;
}

.reusable-hero__background picture,
.reusable-hero__background-image {
  display: block;
  width: 100%;
  height: 100%;
}

.reusable-hero__background-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.reusable-hero__overlay {
  z-index: 1;
  background: linear-gradient(90deg, var(--reusable-hero-navy) 0%, rgba(8, 32, 48, 0.5) 100%);
}

.reusable-hero__overlay::before,
.reusable-hero__overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 285px;
  border-bottom-right-radius: 110px;
  border-bottom-left-radius: 110px;
  pointer-events: none;
}

.reusable-hero__overlay::before {
  border-bottom: 61px solid rgba(255, 255, 255, 0.1);
}

.reusable-hero__overlay::after {
  border-bottom: 31px solid rgba(255, 255, 255, 0.1);
}

.reusable-hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: var(--reusable-hero-gold);
}

.reusable-hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  width: min(1290px, calc(100% - 48px));
  min-height: 737px;
  margin: 0 auto;
  padding: 256px 0 56px;
}

.reusable-hero__breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 16px;
}

.reusable-hero__breadcrumb-link,
.reusable-hero__breadcrumb-current {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0;
  text-decoration: none;
}

.reusable-hero__breadcrumb-link {
  color: var(--reusable-hero-aqua);
}

.reusable-hero__breadcrumb-link:hover,
.reusable-hero__breadcrumb-link:focus-visible {
  color: var(--reusable-hero-white);
}

.reusable-hero__breadcrumb-current,
.reusable-hero__breadcrumb-separator {
  color: var(--reusable-hero-muted);
}

.reusable-hero__breadcrumb-separator {
  display: inline-flex;
  width: 12px;
  height: 12px;
}

.reusable-hero__breadcrumb-separator svg {
  width: 100%;
  height: 100%;
}

.reusable-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.reusable-hero__title {
  width: min(960px, 100%);
  color: var(--reusable-hero-white);
  font-family: var(--font-display);
  font-size: 81px;
  font-weight: var(--fw-regular);
  line-height: 1.1;
  letter-spacing: 0;
}

.reusable-hero__title-highlight {
  color: var(--reusable-hero-gold);
}

.reusable-hero__subtitle {
  width: min(630px, 100%);
  margin: 0;
  color: var(--reusable-hero-muted);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: 0;
}

.reusable-hero__breadcrumb-link:focus-visible {
  outline: 2px solid var(--reusable-hero-aqua);
  outline-offset: 4px;
}

@media (max-width: 1139px) {
  .reusable-hero {
    min-height: 620px;
    border-bottom-width: 24px;
    border-bottom-right-radius: 84px;
    border-bottom-left-radius: 84px;
  }

  .reusable-hero__inner {
    min-height: 596px;
    padding: 180px 0 48px;
  }

  .reusable-hero__overlay::before,
  .reusable-hero__overlay::after {
    border-bottom-right-radius: 84px;
    border-bottom-left-radius: 84px;
  }

  .reusable-hero__title {
    font-size: 62px;
  }
}

@media (max-width: 767px) {
  .reusable-hero {
    min-height: 520px;
    border-bottom-width: 18px;
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
  }

  .reusable-hero__inner {
    width: calc(100% - 40px);
    min-height: 502px;
    padding: 128px 0 40px;
  }

  .reusable-hero__overlay::before,
  .reusable-hero__overlay::after {
    height: 180px;
    bottom: -18px;
    border-bottom-right-radius: 48px;
    border-bottom-left-radius: 48px;
  }

  .reusable-hero__overlay::before {
    border-bottom-width: 38px;
  }

  .reusable-hero__overlay::after {
    border-bottom-width: 20px;
  }

  .reusable-hero__breadcrumbs {
    flex-wrap: wrap;
  }

  .reusable-hero__title {
    font-size: 42px;
  }

  .reusable-hero__subtitle {
    font-size: 17px;
  }
}
