/* ==========================================================================
   Block: Breadcrumb
   ========================================================================== */

.awx-bc__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awx-bc__item {
  display: flex;
  align-items: center;
  color: var(--surface-muted);
  font-family: var(--awx-font-body);
  font-size: var(--awx-step--1);
}

/* Chevron separator between items — not before the first one. */
.awx-bc__item + .awx-bc__item::before {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-inline: 0.6em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.6;
  transform: rotate(45deg);
}

.awx-bc__link {
  color: inherit;
  text-decoration: none;
}

.awx-bc__link:hover {
  color: var(--surface-heading);
}

.awx-bc__current {
  color: var(--surface-heading);
}
