#breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

#breadcrumbs li {
  display: inline-flex;
  align-items: center;
  line-height: 1.5em;
  white-space: nowrap;
  flex-shrink: 0;
}

#breadcrumbs li:last-child {
  margin-right: 0;
}

#breadcrumbs a {
  color:  #101820;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700 !important;
  font-size: 0.8125rem;
  letter-spacing: 0.125em;
  line-height: 1em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Force dark text (matches `text-dark`) */
#breadcrumbs.text-dark a {
  color: #101820 !important;
}

/* Force light text (matches `text-light`) */
#breadcrumbs.text-light a {
  color: #FAF9F7 !important;
}

/* Hover states */
#breadcrumbs.text-dark a:hover,
#breadcrumbs.text-light a:hover {
  color: #00AEC7 !important;
}

#breadcrumbs .separator {
  display: inline-flex !important;
  margin: 0 0.75em;
  color: #00AEC7 !important;
  font-size: 0.75rem;
  font-weight: 700 !important;
  transform: rotate(180deg);
}

#breadcrumbs:empty {
  display: none;
}
