/* ---------------------------------------------------------------------------
   Brand colour corrections, loaded AFTER the Webflow export.

   The template ships a salmon accent (#e6948c / #e58b82) that BCS replaced with
   Gold 14 (#c08755) — Michael, 23 Jul 2026. The 23 Jul sweep recoloured the
   arrow SVGs, but anything coloured through the --brown-* CSS variables kept
   the salmon.

   Corrected here rather than by redefining --brown-50-transparent et al
   globally: those variables are referenced by 100+ selectors across the site,
   so a blanket redefinition is a whole-site restyle, not a fix. Each element is
   corrected explicitly as it's reported.

   Gold reference: --brown-7 (#c08755) is already the gold in the export.
   Salmon vars to watch for: --brown-10/11/12/13, and the --brown-*-transparent
   set, which are all #e6948c at varying alpha.
--------------------------------------------------------------------------- */

/* Top-right breadcrumb (home icon · Blog · Article).
   Was: border --brown-50-transparent (#e6948c80, salmon)
        text   --brown-8 (#a46d43, bronze — not the brand gold either) */
.breadcrumbs-wrap {
  border-color: rgba(192, 135, 85, 0.5);
}

.breadcrumb-link {
  border-right-color: rgba(192, 135, 85, 0.5);
  color: var(--brown-7);
}

.breadcrumb-link:hover {
  background-color: rgba(192, 135, 85, 0.2);
  color: var(--brown-7);
}
