.hero-section {
  position: relative;
  min-height: clamp(520px, 64.6vw, 760px);
  overflow: hidden;
  background: var(--color-bg-dark);
  color: var(--color-bg-light);
}

.hero-section__media,
.hero-section__media picture,
.hero-section__image,
.hero-section__placeholder,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__media {
  z-index: 0;
  overflow: hidden;
}

.hero-section__media picture {
  display: block;
}

.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(4px);
  transform: scale(1.025);
}

.hero-section__placeholder {
  background:
    linear-gradient(rgba(34, 56, 71, 0.18), rgba(34, 56, 71, 0.18)),
    linear-gradient(135deg, #7b8f9e, #223847);
}

.hero-section__overlay {
  z-index: 1;
  background: rgba(34, 56, 71, 0.7);
}

.hero-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(1290px, 100%);
  min-height: inherit;
  margin: 0 auto;
  padding: 144px var(--section-padding-x);
}

.hero-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: min(630px, 100%);
}

.hero-section__breadcrumbs {
  display: inline-flex;
  max-width: 100%;
  border-radius: 210px;
  backdrop-filter: blur(4px);
}

.hero-section__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-section__breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand-tertiary);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.hero-section__breadcrumb-item a {
  color: #afc4d4;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.hero-section__breadcrumb-item a:hover,
.hero-section__breadcrumb-item a:focus-visible {
  color: var(--color-bg-light);
}

.hero-section__breadcrumb-item span {
  color: var(--color-bg-light);
}

.hero-section__breadcrumb-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: var(--color-brand-tertiary);
}

.hero-section__title {
  width: min(630px, 100%);
  color: var(--color-bg-light);
  font-family: var(--font-display);
  font-size: var(--fs-display-medium);
  font-weight: var(--fw-regular);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-normal);
  text-wrap: balance;
}

.hero-section__rule {
  width: 173px;
  height: 5px;
  margin-top: 32px;
  background: var(--color-brand-tertiary);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 460px;
  }

  .hero-section__inner {
    padding-top: 112px;
    padding-bottom: 88px;
  }
}

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

  .hero-section__inner {
    padding-top: 88px;
    padding-bottom: 64px;
  }

  .hero-section__rule {
    width: 132px;
    margin-top: 24px;
  }
}

