.breadcrumbs {
  font-size: 14px;
  margin: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.breadcrumbs__item {
  margin-right: 8px;
}

.breadcrumbs__item::after {
  content: "›";
  margin-left: 8px;
  color: #999;
}

.breadcrumbs__item:last-child::after {
  content: "";
}

.breadcrumbs__link {
  text-decoration: none;
  color: #0077cc;
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__current {
  font-weight: bold;
  color: #333;
}
