.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0;
  margin: 0 0 1rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #888;
  margin: 0 0.3rem;
}
.breadcrumb-item a {
  text-decoration: none;
  color: #0077cc;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #555;
}