.page-header {
  /* background: hsla(0, 0%, 64%, 1); */
  /* color: white; */
}

section.section.page-header:after {
  content: "";
  background-image: url(../../images/bredcrumb-image.svg);
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-repeat: no-repeat;
}

section.section.page-header {
  position: relative;
}

.page-header .page-header-title {
  font-weight: 500;
  font-size: var(--font-size-title-md);
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--primary-color);
}

.page-header .page-header-list {
  --gap: 10px;
  display: flex;
  align-items: baseline;
  gap: var(--gap);
  list-style: none;
}

.page-header .list-item a {
  text-decoration: unset;
  color: inherit;
  display: block;
  transition: opacity 0.3s ease;
}

.page-header .list-item a.active {
  opacity: 0.8;
  font-weight: var(--font-bold);
}

.page-header .page-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 30px 0  60px;
}

.page-header .list-item:not(:last-child):after {
  content: "\e91f";
  font-family: 'icomoon' !important;
  font-size: 10px;
}

html[dir="ltr"] .page-header .list-item:not(:last-child):after {
  transform: scale(-1);
}

.page-header .list-item {
  display: flex;
  align-items: baseline;
  gap: var(--gap);
  font-size: clamp(1.5rem, 3vw, 1.6rem);
  color: var(--gray-dark);
}

.page-header .list-item.is-hidden {
  display: none;
}

.page-header .list-item:has(+ .list-item.is-hidden)::after {
  content: none;
}


@media (max-width: 767px) {
  .page-header .page-header-list {--gap: 4px;}
}
