/*
xs: 576px,
sm: 768px,
md: 992px,
lg: 1200px
*/
.breadcrumbs-wrapper {
  grid-row: 2;
  grid-column: 1/-1;
  margin-top: var(--spacer);
}
@media (max-width: 63rem) {
  .breadcrumbs-wrapper {
    display: none;
  }
}
.breadcrumbs-wrapper .breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: calc(var(--spacer) / 4);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
}
.breadcrumbs-wrapper .breadcrumbs li {
  display: flex;
  gap: calc(var(--spacer) / 4);
}
.breadcrumbs-wrapper .breadcrumbs li:not(:first-child):before {
  content: "/";
  display: block;
  color: var(--blue-grey);
}
.breadcrumbs-wrapper .breadcrumbs li a {
  text-decoration: underline;
}
.breadcrumbs-wrapper .breadcrumbs li a:hover {
  color: var(--red);
}
.breadcrumbs-wrapper .breadcrumbs li:last-child {
  display: none;
}
