/* =========================================================
   REVIEWS — BRIDGE FOR ATC CONSULT (asia-consult-site)
   The ported reviews widget (reviews.css + reviews-theme.css) was
   built for a dark-first site with a [data-theme] toggle and its own
   token names (--accent, --panel, --hair, --on-accent, --bg).
   This site is light-only with a different token set, so we:
     1. Map the source token names onto this site's palette, and
     2. Force the widget's LIGHT surface/text values directly
        (no [data-theme="light"] attribute exists here to trigger them).
   Load this LAST — after reviews.css and reviews-theme.css — so it wins.
========================================================= */
#reviews{
  /* --- source tokens mapped to this site's palette --- */
  --accent:      #10B3E6;                 /* --sky */
  --on-accent:   #FFFFFF;
  --panel:       #FFFFFF;                 /* card / panel surface */
  --hair:        rgba(20,24,29,0.12);     /* --line */
  --bg:          #FFFFFF;                  /* --paper */

  /* --- widget accent (cyan to match the site) --- */
  --rv-accent:   #10B3E6;
  --rv-accent-2: #0B8FBB;
  --rv-accent-rgb: 16,179,230;

  /* --- force light surfaces/text (this site has no data-theme toggle) --- */
  --rv-text-rgb: 26,34,43;                /* --text #1A222B */
  --rv-line-rgb: 20,24,29;
  --rv-surface:  #F3F6F8;                 /* --paper-2, sits between white sections */
}

/* Keep the section spacing consistent with the site's other sections */
#reviews.rv-section{
  background: var(--rv-surface);
  color: var(--text);
}
