/* Portal red theme (spec §8.7): identical chrome to Quadrifoglio.Web, brand accents red.
   Loaded after site.css — overrides its :root palette (site.css:8-15). */
:root {
    --q-primary: #b02a2a;
    --q-primary-dark: #8c1f1f;
    --q-primary-light: #fdecec;
    /* sidebar: same structure, red-tinted dark instead of slate */
    --q-sidebar-bg: #2b1212;
    --q-sidebar-hover: #452020;
    --q-sidebar-sub-bg: #1a0a0a;
}
/* site.css:326 hardcodes the green rgba on the :hover state — re-pin it red.
   NOTE: .active does NOT need an override — it already inherits red via the
   existing `border-bottom: 3px solid var(--q-primary)` shorthand in site.css. */
.nav-tabs .nav-link:hover { border-bottom-color: rgba(176, 42, 42, 0.3); }
