/* Breadcrumb — overlays the top of the hero band so it doesn't contribute
   to the hero's layout height (heroes stay the same height across pages,
   including the homepage which has no breadcrumb). */
.post-breadcrumb {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 3;
  background: transparent;
  border: 0;
  pointer-events: none;
}
.post-breadcrumb a,
.post-breadcrumb-current {
  pointer-events: auto;
}
.post-breadcrumb-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 16px 48px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
}
.post-breadcrumb-inner a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 180ms ease;
}
.post-breadcrumb-inner a:hover { color: var(--orange); }
.post-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}
.post-breadcrumb-current {
  color: var(--white);
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .post-breadcrumb-inner { padding: 12px 24px 0; font-size: 11px; }
}
