/**
 * Breadcrumb
 */

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-neutral--dark-grey);
  font-weight: 400;
  gap: 0.5rem;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-neutral--dark-grey);
}
.breadcrumb li:first-child a::before {
  content: "";
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-neutral--white);
  border-radius: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../../images/breadcrumb/home.svg');
}
.breadcrumb li::after {
  content: "";
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-neutral--dark-grey);
  border-radius: 100%;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb li::before {
  content: none;
}
