@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/static/fonts/Archivo-400-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/IBMPlexMono-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/static/fonts/SourceSerif4-500-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* --- Report figure-column fix (Фидий 20.07, owner beauty gate) --------------
   Served statically so it patches the LIVE server-rendered report pages
   (01/02/03) without an app rebuild. The editorial finding grid is a fixed
   60px index column; on the Strategy page the risk/opportunity cards put a
   full dollar figure ($17,668) there, which overflowed 60px straight into the
   prose. minmax(60px,max-content) keeps short indices ("01") at 60px -- so
   01/02 are visually unchanged -- but lets a long figure size its own column,
   with the grid's column-gap always separating it from the text.
   .gp-doc .finding (0,2,0) beats the inline .finding (0,1,0) regardless of
   source order. */
.gp-doc .finding { grid-template-columns: minmax(60px, max-content) 1fr; }
.gp-doc .finding .idx { white-space: nowrap; }
