/**
 * @file
 * Site-wide breadcrumb. First item is always a Home icon (see
 * templates/navigation/breadcrumb.html.twig) — every breadcrumb builder
 * in the codebase adds "Home" as the first link.
 */

.aml-breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 40px 0;
}

.aml-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aml-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--hp-mid, #6E6E73);
}

.aml-breadcrumb-item a {
  color: var(--hp-mid, #6E6E73);
  text-decoration: none;
}

.aml-breadcrumb-item a:hover {
  color: var(--hp-blue, #2176B8);
  text-decoration: underline;
}

.aml-breadcrumb-item:last-child span {
  color: var(--hp-ink, #1D1D1F);
}

.aml-breadcrumb-sep {
  color: var(--hp-light, #D2D2D7);
  margin-right: 4px;
}

.aml-breadcrumb-item--home a {
  display: flex;
  align-items: center;
  color: var(--hp-mid, #6E6E73);
}

.aml-breadcrumb-item--home a:hover {
  color: var(--hp-blue, #2176B8);
}

.aml-breadcrumb-home-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .aml-breadcrumb {
    padding: 12px 20px 0;
  }
}
