/* B40: minimal breadcrumb component for the ~35 hand-authored /help
 * pages that don't load docs.css or blueprint-amber.css. Uses the
 * --ink/--ink-2/--ink-3 tokens already defined by marketing-v2.css
 * (every page loading this file loads that one first). */
.hlp-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-family: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.hlp-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.hlp-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-3);
}
.hlp-breadcrumb li + li::before {
  content: "/";
  color: var(--ink-4);
}
.hlp-breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
}
.hlp-breadcrumb a:hover {
  color: var(--ink);
}
.hlp-breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
