.breadcrumbs {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.875rem;
  row-gap: 0.5rem;
  color: #3E3D3D;
  line-height: 1;
  margin-bottom: 0;
  padding: 1rem 0;

  .breadcrumbs__item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 0.875rem;
    &::after {
      content: "";
      display: block;
      width: 6px;
      height: 10px;
      mask-image: url(../../images/icons/chevron-right.svg);
      mask-position: center;
      mask-size: contain;
      background-color: currentColor;
    }

    &:last-child {
      &::after {
        content: none;
      }
    }

    a {
      color: #3E3D3D;

      &:hover {
        color: var(--csa-purple--bright);
      }
    }
  }
}
