.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3em;
  padding: 0.5em 1em;
  background: #f9f9f9;
  font-size: 0.875rem;  /* 14px */
  margin-bottom: 0.1rem;
  margin-top: -1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb li {
  white-space: nowrap;
}

.breadcrumb li + li::before {
  content: "»";
  margin: 0 0.5em;
  color: #999;
  user-select: none;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: #0056b3;
}

.breadcrumb li[aria-current="page"] {
  font-weight: 600;
  color: #333;
}
