.breadcrumbs {
  padding: 16px 0;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--text-tertiary, #6b7280);
}

.breadcrumbs a {
  color: var(--text-secondary, #9ca3af);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--brand, #6366f1);
}

.breadcrumbs span[aria-current] {
  color: var(--text-primary, #e8ecf0);
  font-weight: 500;
}

