/* ==========================================================================
   oa-brand-fixes-v1.css
   --------------------------------------------------------------------------
   Design-audit consistency pass (May 2026 / "fresh eyes" review).

   Consolidates interaction + label colour onto the single YELLOW accent
   system and retires the residual blue that the May em-consolidation pass
   didn't catch. Blue (var(--blue)) is now reserved for ONE role only:
   inline text links inside prose (where a non-link colour would hurt
   readability). Everywhere it was acting as a brand accent it now resolves
   to the brand yellow (fills/dots) or ink (small mono labels).

   Built as an isolated override file (the project's established pattern,
   see oa-home / oa-spot-enrich / oa-umbrella-disc) so the large brand-v8 /
   theme-v12 bundles do NOT need a version bump. Enqueued AFTER oa-theme so
   these win on a specificity tie via source order.
   ========================================================================== */

/* 1. PRIMARY BUTTONS — retire the blue hover; the brand yellow is now the
      single interaction accent. Dark resting state is kept (it matches the
      hero "Search" button), and resolves to yellow + ink on hover. */
.btn:hover{ background:var(--yellow); color:var(--ink); }
.arrow-btn:hover{ background:var(--yellow); color:var(--ink); }

/* 2. CATEGORY LABELS — the "JOURNAL" / "TRIP REPORTS" mono eyebrow labels on
      cards and posts were blue, the only blue text outside prose links.
      Move them to ink so they read as part of the neutral mono-label system
      (yellow stays the signature via the eyebrow dots + hero italic em). */
.story .cat,
.feat-big .cat,
.fitem .cat,
.article .cat,
.post-hero .meta .cat,
.rel-card .cat,
.step .n{ color:var(--ink); }

/* 3. EYEBROW DOTS — a few section eyebrows used a blue dot while the base
      .eyebrow .dot is yellow. Bring them back into line. */
.spot-links .eyebrow .dot,
.cat-faq .eyebrow .dot{ background:var(--yellow); }
