/* MyWeb2 framing for the research report — minimal, namespaced under .aref.
   Adds a persistent "back to Research" control to the report's own topbar.
   Uses the report's existing tokens (accent = #3EC48D emerald) so it matches
   both this report and MyWeb2. No external requests. */
.aref .aref-nav{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; min-width:0; }
.aref .aref-back{
  display:inline-flex; align-items:center; gap:.45rem; white-space:nowrap;
  font-size:.72rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accd); border:0; background:none;
}
.aref .aref-back:hover,.aref .aref-back:focus-visible{ color:var(--acc); border:0; }
.aref .aref-back svg{ display:block; flex:0 0 auto; }

/* Guard: the report's wide data tables scroll inside their own containers;
   this stops any residual horizontal document scroll on narrow screens
   without creating a scroll container (so the sticky topbar is unaffected). */
html, body.aref{ overflow-x: clip; }
