/*
 * Momo Review — Breadcrumb component.
 * Used on taxonomy child archives and single review pages.
 */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding: 0 4px;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-light);
  opacity: 0.5;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

/* On-banner variant: the breadcrumb sits on top of the colored hero
   gradient, so we use white text + a soft underline on hover. */
.breadcrumb--on-banner {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.breadcrumb--on-banner a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.breadcrumb--on-banner a:hover {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.breadcrumb--on-banner .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb--on-banner .breadcrumb-current {
  color: white;
}
