.breadcrumb {
  padding: 0.75rem 1.5rem;
  padding-top: 5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  gap: 0.25rem;
}

.breadcrumb-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #e2e8f0;
  text-decoration: underline;
}

.breadcrumb-item.active span {
  color: #e2e8f0;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #475569;
  margin-right: 0.25rem;
}
