/**
 * portal-custom.css
 * Sagsportal — Tenant / client overrides
 *
 * This file is loaded last and can override any CSS custom property
 * or class from portal-layout.css or portal-theme-*.css.
 *
 * Load order:
 *   1. portal-layout.css
 *   2. portal-theme-{fluent-2|liquid-glass|braita|material-you}.css
 *   3. portal-custom.css  ← this file
 *
 * Examples:
 *
 * Override accent colour for all themes:
 *   :root { --portal-accent: #e63946; }
 *
 * Override accent for dark mode only:
 *   [data-dark] { --portal-blue-dark: #ff6b6b; }
 *
 * Override card radius on all themes:
 *   :root, [data-theme="fluent-2"], [data-theme="liquid-glass"],
 *   [data-theme="braita"], [data-theme="material-you"] {
 *     --portal-radius-card: 4px;
 *   }
 *
 * Inject a logo into the brand panel:
 *   .portal-brand-logo { content: url('/images/logo.svg'); }
 *
 * Add a custom font:
 *   @import url('https://fonts.googleapis.com/css2?family=Inter');
 *   :root { --portal-font-family: 'Inter', system-ui, sans-serif; /* via --portal-font-family * / }
 */
