/* =========================================================
   EPHARO TOKENS
   Core design variables for epharo frontend system
   AWS-ready staging file
   ========================================================= */

/* ===== Font size accessibility states ===== */
html{
  font-size:100%;
}

html[data-font="1"]{
  font-size:100%;
}

html[data-font="1.1"]{
  font-size:110%;
}

html[data-font="1.2"]{
  font-size:120%;
}

/* Body fallback for modules that read data-font from body */
body[data-font="1"]{
  font-size:100%;
}

body[data-font="1.1"]{
  font-size:110%;
}

body[data-font="1.2"]{
  font-size:120%;
}

/* ===== Global epharo tokens ===== */
:root{
  /* Brand colors */
  --ink:#173b2a;
  --muted:#4a5f52;
  --brand:#165c34;
  --brand-2:#0f4826;

  /* Surfaces */
  --soft:#ffffff;
  --white:#ffffff;

  /* Lines / dividers */
  --line:#e7eee9;
  --divider:rgba(23,59,42,.22);

  /* Header layout */
  --hdr-h:113px;
  --hdr-h-m:88px;

  /* Layout shell */
  --eph-shell:1180px;
}

/* ===== Browser behavior ===== */
html,
body{
  overflow-anchor:none;
}