@charset "UTF-8";
/**
 * @file
 * Readable Colorbox image counter (A11Y-S16-R006).
 *
 * modules/contrib/colorbox/styles/default/colorbox_style.css paints the popup
 * image counter (#cboxCurrent, e.g. "1 of 12") in #949494 on the white
 * #cboxContent. That is 3.03:1 — below the 4.5:1 WCAG 2.1 AA minimum for this
 * 16px/400 text. Repaint it with the design system's body-text token
 * (--body-text, the same colour .color-body-txt applies) instead of inventing
 * a new grey, so the counter follows the site-wide text colour.
 *
 * Attached through libraries-extend on colorbox/default (see dolev21.info.yml),
 * so it loads only where that contrib style loads and nowhere else. dolev21 is
 * the base theme of every site's dolev21_sub, and libraries-extend is inherited
 * by the active sub-theme, so the fix reaches the whole multisite.
 *
 * The selector deliberately carries two IDs where one would match: with CSS
 * aggregation on, grouping decides which file lands where, so source order is
 * not something to rely on. The extra ID wins on specificity instead, and the
 * override holds whichever way the two files end up ordered.
 */
#cboxContent #cboxCurrent {
  color: var(--body-text);
}

