/*
  AppIcon inline-SVG icons (replaces FontAwesome on public pages).

  The icon's <i> wrapper keeps its original font-size / color / utility classes;
  the <svg> child below is sized in `em` so it scales with the wrapper's font-size
  and inherits its color via `currentColor` - matching how a FontAwesome glyph
  behaved. `vertical-align` reproduces FA's baseline nudge so inline icons sit on
  the text baseline the same way.
*/
.app-icon-svg {
  display: inline-block;
  height: 1em;
  width: auto;
  fill: currentColor;
  vertical-align: -0.125em;
}
