/* Self-hosted Material Symbols Outlined.
 *
 * Replaces the render-blocking <link> to fonts.googleapis.com. The font is
 * served from our own origin (/static/fonts, edge-cached by Cloudflare),
 * so first paint no longer depends on Google being reachable — this was
 * stalling load for ~10s in regions where Google Fonts is slow/blocked.
 *
 * Rules copied verbatim from Google's css2 response for
 *   Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0..1,0&display=block
 * (only the src URL is repointed to the local woff2), so the cascade and
 * the .material-symbols-outlined utility behave exactly as before.
 */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/static/fonts/material-symbols-outlined-v341.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
