/* =============================================================================
   @elements/style — breadcrumb

   Dashboard pages use a mono breadcrumb heading styled as a shell path.
   Format:  ~/<username>/<section>/<subsection>

   Usage:
     <h1 class="breadcrumb">
       <span class="breadcrumb-tilde">~/</span>
       <a href="/dashboard" class="breadcrumb-seg">cmather</a>
       <span class="breadcrumb-sep">/</span>
       <span class="breadcrumb-current">license</span>
     </h1>

   - Rendered in Plex Mono at 28px, letter-spacing -0.015em
   - `~/` prefix in --ink-faint, 400 weight
   - <username> clickable, --ink-soft, hover cornflower
   - `/` separators in --ink-faint, 400 weight
   - Intermediate segments clickable, --ink-soft, hover cornflower
   - Current (last) segment in --ink, 600 weight, not a link
============================================================================= */

.breadcrumb {
  font-family: var(--font-mono);
  font-weight: var(--font-semibold);
  font-size: 1.75rem;             /* 28px */
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.breadcrumb-tilde {
  color: var(--ink-soft);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}
.breadcrumb-tilde:hover { color: var(--accent-deep); }

.breadcrumb-seg {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}
.breadcrumb-seg:hover { color: var(--accent-deep); }

.breadcrumb-sep {
  color: var(--ink-faint);
  font-weight: var(--font-regular);
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: var(--font-semibold);
}
