/* ==========================================================================
   AE Creative — Breadcrumb
   Used inside .page-hero on every interior page. Built entirely from
   existing tokens (--ff-mono, --text-2/3, --brand) — no new colors.
   ========================================================================== */

.breadcrumb{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-family:var(--ff-mono);font-size:12px;letter-spacing:.06em;
  color:var(--text-3);
}
.breadcrumb a{color:var(--text-2);transition:color .2s var(--ease)}
.breadcrumb a:hover,.breadcrumb a:focus-visible{color:var(--text)}
.breadcrumb__sep{color:var(--text-3);opacity:.6}
.breadcrumb__current{color:var(--brand)}
