/* ============================================================
   Universal breadcrumb strip
   Used by every SPARK page so the user can always step back up.
   Sits between the (transparent) header and the page hero.
   ============================================================ */

.lc-crumbs {
  position: relative;
  z-index: 2;
  background: #0b0b0c;
  padding: 88px clamp(24px, 4vw, 56px) 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}
.lc-crumbs__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  line-height: 1.6;
}
.lc-crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.lc-crumbs a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.lc-crumbs__sep { color: rgba(255,255,255,0.32); font-size: 9px; }
.lc-crumbs__current { color: #fff; }

@media (max-width: 640px) {
  .lc-crumbs { padding-top: 78px; font-size: 10px; gap: 10px; }
  .lc-crumbs__inner { gap: 10px; }
}
