/* ============================================================
   HERO BREADCRUMB — shared by every landing-page navy hero.
   Renders via Views/V2/Shared/_HeroBreadcrumb.cshtml. Unscoped (no page
   prefix) on purpose: it is the one canonical style now, not a per-page
   variant, so it does not live inside .packages-page/.destination-page like
   the two blocks it replaced (.pkg-breadcrumb in packages.css,
   .dp-breadcrumb in destination-page.css).

   Style is the former .pkg-breadcrumb look (chevron separator, white-on-
   hover) — chosen as canonical over the destination page's old "/"
   separator + gold hover, which this component no longer produces anywhere.
   ============================================================ */

.hero-breadcrumb {
  font-family: "Work Sans";
  font-size: 13px;
  color: #C9D1E6;
  margin-bottom: 18px;
}
.hero-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.hero-breadcrumb a {
  color: #C9D1E6;
  text-decoration: none;
}
.hero-breadcrumb a:hover { color: var(--light-00); }
.hero-breadcrumb li::after {
  content: "\203A";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.hero-breadcrumb li:last-child::after { content: ""; }
.hero-breadcrumb li:last-child { color: var(--light-00); }
