/* Full-width routed-page heading with aligned title and breadcrumb. */
#page-header {
  --psc-page-header-dark: #2d2325;
  --psc-page-header-brand: #6f2d35;
  --psc-page-header-accent: #d9a29b;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--psc-page-header-dark) 0%, var(--psc-page-header-brand) 68%, #852a37 100%);
  border-bottom: 1px solid rgba(34, 34, 34, 0.28);
  box-shadow: 0 5px 18px rgba(34, 34, 34, 0.13);
}

#page-header::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.09), transparent 32%),
    linear-gradient(105deg, transparent 0 62%, rgba(255, 255, 255, 0.025) 62% 100%);
  content: "";
  pointer-events: none;
}

.page-header__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(1.5rem, 2.6vw, 2.25rem);
}

.page-header__inner > div {
  min-width: 0;
}

#block-psc-page-title {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

#block-psc-page-title::after {
  display: block;
  width: clamp(3rem, 6vw, 4.5rem);
  height: 3px;
  margin-block-start: 0.8rem;
  background: var(--psc-page-header-accent);
  border-radius: 999px;
  content: "";
}

#block-psc-page-title h1 {
  margin: 0;
  color: #fff;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-align: left;
  text-wrap: balance;
}

.breadcrumb-wrap {
  min-width: 0;
  margin-block-start: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.breadcrumb-wrap nav,
.breadcrumb-wrap ol {
  margin: 0;
}

.breadcrumb-wrap ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-wrap li {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
}

.breadcrumb-wrap li + li::before {
  margin-inline: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  content: "/";
}

.breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.breadcrumb-wrap a:hover {
  color: #fff;
}

.breadcrumb-wrap a:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.content-top-region {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

@media (max-width: 767px) {
  #block-psc-page-title {
    padding: 0;
  }

  #block-psc-page-title::after {
    height: 2px;
    margin-block-start: 0.7rem;
  }

  #block-psc-page-title h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.16;
  }

  .page-header__inner {
    padding-block: 1.25rem;
  }

  .breadcrumb-wrap {
    margin-block-start: 0.65rem;
    font-size: 0.85rem;
  }

  .breadcrumb-wrap li + li::before {
    margin-inline: 0.4rem;
  }
}
