.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  line-height: 1.35;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #242424;

  & > * {
    display: inline-flex;
    align-items: center;
  }

  & > *:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12' fill='none'%3E%3Cpath d='M2.53906 2.00547L6.03906 6.20176L2.53906 10.0055' stroke='black' stroke-width='1.25'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.page-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-breadcrumbs {
    font-size: 14px;
    gap: 6px;
  }

  .page-breadcrumbs > *:not(:last-child)::after {
    width: 6px;
    height: 10px;
    margin-left: 6px;
  }
}
