/* Font Awesome 4.7 - subset locale (2026-06-09). Solo le 8 icone usate nel sito:
   facebook, instagram, linkedin, github, twitter, phone, map-marker, envelope.
   Sostituisce il CSS+webfont del CDN (~32KB CSS + 77KB woff2) con subset self-hosted (~1.6KB woff2).
   Il markup esistente <i class="fa fa-X"> resta invariato. */
@font-face {
  font-family: 'FontAwesome';
  src: url('../img/fonts/font-awesome/fa-subset.woff2') format('woff2'),
       url('../img/fonts/font-awesome/fa-subset.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 'FontAwesome';
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-facebook:before { content: "\f09a"; }
.fa-instagram:before { content: "\f16d"; }
.fa-linkedin:before { content: "\f0e1"; }
.fa-github:before { content: "\f09b"; }
.fa-twitter:before { content: "\f099"; }
.fa-phone:before { content: "\f095"; }
.fa-map-marker:before { content: "\f041"; }
.fa-envelope:before { content: "\f0e0"; }
