/* CrossAIHub — Breadcrumbs · STEP 5S Phase 2 · 2026-08-01 */
.crosshub-breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(58, 42, 26, 0.5);
  line-height: 1.6;
}

.crosshub-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.crosshub-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.crosshub-breadcrumbs li:not(:last-child)::after {
  content: '·';
  margin: 0 0.5rem;
  color: rgba(58, 42, 26, 0.25);
}

.crosshub-breadcrumbs a {
  color: rgba(58, 42, 26, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.crosshub-breadcrumbs a:hover {
  color: #8b6914;
  text-decoration: underline;
}

.crosshub-breadcrumbs [aria-current="page"] {
  color: rgba(58, 42, 26, 0.4);
  font-style: italic;
}

/* Landing (homepage) and Family Tree — hide breadcrumbs */
body[data-page-type="landing"] .crosshub-breadcrumbs,
body[data-page-type="tree"] .crosshub-breadcrumbs {
  display: none;
}
