/**
 * Component: Breadcrumbs
 * Styled as a file path (mono font, "/" separators) — a breadcrumb trail
 * literally is a path, so this treatment is grounded in what the
 * component represents, not applied as unrelated decoration.
 */

.breadcrumbs {
  font-family: var(--sf-font-mono);
  font-size: var(--sf-text-xs);
  color: var(--sf-slate-400);
  margin-bottom: var(--sf-space-6);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sf-space-1);
  padding: 0;
  margin: 0;
}

.breadcrumbs li { display: flex; align-items: center; gap: var(--sf-space-1); }

.breadcrumbs a {
  color: var(--sf-slate-600);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--sf-indigo); }

.breadcrumbs [aria-current="page"] { color: var(--sf-ink); }

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--sf-slate-400);
  margin-left: var(--sf-space-1);
}
