.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

@media(max-width: 991px) {
  .breadcrumbs__item {
    max-width: 180px;
  }
}

.breadcrumbs__item+.breadcrumbs__item {
  margin-left: 1.5rem;
}

.breadcrumbs__item+.breadcrumbs__item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -1.25rem;
  color: var(--color-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.29295 1.63599C5.10548 1.82351 5.00017 2.07782 5.00017 2.34299C5.00017 2.60815 5.10548 2.86246 5.29295 3.04999L10.243 7.99999L5.29295 12.95C5.11079 13.1386 5.01 13.3912 5.01228 13.6534C5.01456 13.9156 5.11972 14.1664 5.30513 14.3518C5.49054 14.5372 5.74135 14.6424 6.00355 14.6447C6.26575 14.6469 6.51835 14.5461 6.70695 14.364L12.364 8.70699C12.5514 8.51946 12.6567 8.26515 12.6567 7.99999C12.6567 7.73482 12.5514 7.48051 12.364 7.29299L6.70695 1.63599C6.51942 1.44852 6.26512 1.3432 5.99995 1.3432C5.73479 1.3432 5.48048 1.44852 5.29295 1.63599Z' fill='%233954FB'/%3E%3C/svg%3E");
}

.breadcrumbs__item--current {
  color: var(--text-secondary);
  pointer-events: none;
}

.breadcrumbs__item--current .breadcrumbs__link {
  cursor: default;
}

.breadcrumbs__link {
  color: var(--text-primary);
  transition: 0.3s;
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .breadcrumbs__item:not(:first-child):not(.breadcrumbs__item--current) {
    display: none;
  }

  .breadcrumbs__item:first-child::after {
    content: "";
    display: inline-block;
    color: inherit;
  }
}