.schema-breadcrumbs {
  box-sizing: border-box;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 12px;
  color: #486167;
  font: 500 0.8125rem/1.4 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.schema-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schema-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.schema-breadcrumbs li + li::before {
  content: "/";
  color: #8ca0a4;
}

.schema-breadcrumbs a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.schema-breadcrumbs li:last-child a {
  color: #173f45;
  text-decoration: none;
}

@media (max-width: 640px) {
  .schema-breadcrumbs {
    width: min(100% - 28px, 1120px);
    padding-block: 10px;
  }
}
