.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0 25px;
  font-size: 11px;
  letter-spacing: .1px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 var(--offset-x);
}

.crumbs__item {
  position: relative;
  font-weight: bold;
}

.crumbs__item::after {
  content: '>';
  position: absolute;
  top: 0;
  right: -15px;
}

.crumbs__item:last-child {
  font-weight: normal;
}

.crumbs__item:last-child::after {
  display: none;
}