/* =================================================================================================
   SAFARI-A11Y-PASS-0918 — CONTRAST on the Network (fs-social-01).  The twin of Mission Control's
   static/fs/css/fs-a11y-contrast-0918.css; same method, same rule (hue and saturation untouched,
   the smallest step along lightness that reaches AA, measured from the composited colour).

   SPECIFICITY: the Network's pages also carry <style> blocks in the body, after this <link>.  The
   selector below adds a leading `html` so it wins on specificity rather than on document order.

   THE NETWORK RENDERS DARK for the demo seat, and every one of the 30 failing rows measured on the
   feed is one token: `--f2-faint` on `.fs-dark #sn-x`.  It carries the byline ("FocalShift Demo"),
   the timestamp ("· Aug 27"), the level chip ("LVL 5"), the post counts and the ad attribution
   ("Served by FocalShift Ads ·") — the small print under every card in the feed.

       #6d7590 -> #868ca3    on the feed panel #171c30   3.69 -> 5.05 : 1
                             on the card panel #1d2340   3.36 -> 4.61 : 1
                             on the rail panel #131830   3.83 -> 5.24 : 1
   The value is chosen against the LIGHTEST of the three dark panels the token is painted on, so it
   clears AA on all three rather than on the one that happened to be measured first (#7c839c, the
   first pass's answer, reads 4.48 on the feed panel and 4.09 on the card panel — two near misses
   dressed up as a fix).

   The LIGHT palette's `--f2-faint` (#636d8d on #ffffff = 4.92 : 1) already clears AA and is not
   touched: this rule is written at the dark selector only.
   ================================================================================================= */
html.fs-dark #sn-x { --f2-faint: #868ca3; }

/* The feed's active filter link, the one word that says which list you are looking at.
       #615dfa -> #817efb    on #0c1320   3.94 -> 5.59 : 1
                             on #1d2340   3.81 -> 4.62 : 1
                             on #171c30   4.18 -> 5.07 : 1
   (#6f6cfa was the first answer and cleared only the panel it was measured on — the same mistake as
   --f2-faint, made twice; the value now clears every panel the link is painted on.)               */
html.fs-dark #sn-x a.on,
html.fs-dark a.on,
html.fs-dark #f2-post-tab.on { color: #817efb; }

/* NOT CHANGED, and why: `.p2dsel-c` on the profile page reads 2.05 : 1 (rgb(64,72,95) on #0c1320)
   and looks like the worst pair on either box.  It is the owner's spotlight chooser, and its own
   source calls it what it is — "SECTION D · the owner's spotlight chooser (VISUAL STUB, not
   selectable)".  The colour is `var(--f2-faint)` faded by the stub's own opacity, i.e. a control
   deliberately drawn as unavailable; WCAG 1.4.3 exempts one.  A first draft of this file darkened
   it and the rule could not have applied anyway — the page's own selector is `#sn-x .p2dsel-c`,
   an ID, which outranks anything written here without one.  Measured, judged, left, and named. */
