/* ========================================
   Breadcrumbs
======================================== */

.tw-breadcrumbs {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto 1.4rem;
  color: var(--ak-color-muted, #74695f);
  font-size: 0.86rem;
  line-height: 1.7;
}

.tw-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.tw-breadcrumbs li + li::before {
  content: "›";
  margin: 0 0.45rem;
  color: rgba(80, 60, 40, 0.45);
}

.tw-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.tw-breadcrumbs a:hover,
.tw-breadcrumbs a:focus {
  color: var(--ak-color-accent, #8a5a2b);
  border-bottom-color: currentColor;
}

.tw-breadcrumbs [aria-current="page"] {
  color: var(--ak-color-text, #2f2a24);
}