/* Australia Unity Themes */

/* All non-current breadcrumb items */
sl-breadcrumb-item.au:not([aria-current='page'])::part(label) {
  color: var(--au-white);
}

/* Current page item */
sl-breadcrumb-item.au[aria-current='page']::part(label) {
  color: var(--au-white);
  font-weight: 600; /* optional bold */
}

/* Optional UX: hover on clickable crumbs */
sl-breadcrumb-item.au[href]::part(label):hover {
  color: var(--au-white);
  text-decoration: underline;
  text-underline-offset: 2px; /* nicer spacing from text */
}

/* Make the breadcrumb separators white */
sl-breadcrumb-item.au::part(separator) {
  color: var(--au-white);
}