/* Breadcrumb Navigation */
.hh-breadcrumb {
  padding: 1rem 0;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hh-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  gap: 0;
}

.hh-breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.hh-breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
  color: var(--hh-muted);
  user-select: none;
}

.hh-breadcrumb-link {
  color: var(--hh-brand-teal);
  text-decoration: none;
  transition: color var(--hh-fast);
}

.hh-breadcrumb-link:hover {
  color: var(--hh-brand-orange);
}

.hh-breadcrumb-current {
  color: var(--hh-muted);
}
