/* Self-hosted subset of flag-icons (github.com/lipis/flag-icons), covering
   only the 8 countries actually referenced in the codebase (FootprintsSection,
   AcrossIndustriesSection world-map pins). Replaces the full ~250-country
   external stylesheet, which was render-blocking every page for markup only
   two components ever use. Only the "fis" (1x1/square) variant is included —
   every usage in this codebase pairs fi-xx with fis, the 4x3 default is
   never rendered. */
.fi {
  position: relative;
  display: inline-block;
  width: 1em;
  line-height: 1em;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}
.fi:before {
  content: ' ';
}
.fi-in.fis {
  background-image: url(/assets/flags/in.svg);
}
.fi-ca.fis {
  background-image: url(/assets/flags/ca.svg);
}
.fi-us.fis {
  background-image: url(/assets/flags/us.svg);
}
.fi-za.fis {
  background-image: url(/assets/flags/za.svg);
}
.fi-gb.fis {
  background-image: url(/assets/flags/gb.svg);
}
.fi-ae.fis {
  background-image: url(/assets/flags/ae.svg);
}
.fi-sg.fis {
  background-image: url(/assets/flags/sg.svg);
}
.fi-au.fis {
  background-image: url(/assets/flags/au.svg);
}
