.breadcrumbs {
  margin: 1rem auto;
  font-size: 14px;
  color: #6b7a86;
  max-width: 1200px;
}

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

.bc-item {
  display: flex;
  align-items: center;
  color: #6b7a86;
}

.bc-item a {
  color: #004751;
  text-decoration: none;
  font-weight: 600;
}

.bc-item a:hover {
  text-decoration: underline;
}

.bc-item::after {
  content: ">";
  margin: 0 6px;
  color: #9aa5af;
}

.bc-item:last-child::after {
  content: "";
}

.bc-current {
  color: #1f3137;
  font-weight: 700;
}