/*
This file should only be used by hesk clients to apply any custom overwrites to core files,
and ensure these changes are included in the bundled css.

Please only change this file if you know what you are doing.
Any general thematic changes should rather be done as part of /theme changes of theme_overrides.css
*/

/* ============================================================
   KOTIMKAB brand — green palette (#025D3F) override.
   Loaded LAST (non-bundled, prod + debug) so it wins over
   0_00_default_theme_vars.css without touching core files.
   Only remaps the 3 MAIN theme colors; everything else derives
   from these via color-mix, so the whole native UI turns green.
   ============================================================ */
:root {
    --primary:   #025D3F;  /* was #133e5e */
    --secondary: #00704D;  /* was #2b6d9e */
    --tertiary:  #0e8a5f;  /* was #1673e5 */

    --foreground:    #025D3F;
    --font__pri-clr: #025D3F;
    --font__sec-clr: #00704D;

    --main-background: #eef6f1; /* was #e9f0f3 — subtle green tint */
}

/* KB article body: make in-content links clearly visible + underlined.
   The .prose wrapper strips default link styling, so scope it here. */
.page-view-article .prose a,
.prose.prose-blue a {
    color: #00704D;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.page-view-article .prose a:hover,
.prose.prose-blue a:hover {
    color: #025D3F;
    text-decoration-thickness: 2px;
}
