/* ==========================================================================
   COMPONENTS · BREADCRUMB — a small-caps furniture trail back up the hierarchy
   (The Index › Türkiye › Reproductive Services), separated by a hairline mark.
   ========================================================================== */

.op-breadcrumb {
  font-family: var(--font-furniture);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}
.op-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* Collapse the list/item font-size to zero so the first flex item doesn't ride
     a few px above the rest (its line box otherwise carries an extra font-metric
     strut, leaving later crumbs like "Specialties" sitting low). The labels and
     the › restore their size below; gaps move from em to the rem equivalent so
     they survive the zeroed font (0.5em of --text-2xs == 0.375rem). Same fix as
     .op-nameplate__list. */
  font-size: 0;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.op-breadcrumb__item { display: inline-flex; align-items: center; gap: 0.375rem; }
.op-breadcrumb__item > *,
.op-breadcrumb__item::before { font-size: var(--text-2xs); }
.op-breadcrumb__item + .op-breadcrumb__item::before {
  content: "\203A";              /* › */
  color: var(--rule-strong);
}
.op-breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.op-breadcrumb a:hover { color: var(--accent); }
.op-breadcrumb [aria-current="page"] { color: var(--text); }
