/*
 * Minimal FontAwesome-compatible layer for the icons used by this site.
 * Covered icons: share-nodes, x-twitter, cloud, mastodon, link,
 * arrow-right-from-bracket.
 */

.fa-solid,
.fas,
.fab {
  display: inline-block;
  width: 1.15em;
  min-width: 1.15em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-rendering: auto;
}

.fa-solid::before,
.fas::before,
.fab::before {
  display: inline-block;
}

.fa-share-nodes::before {
  content: "↗";
}

.fa-x-twitter::before {
  content: "𝕏";
}

.fa-cloud::before {
  content: "☁";
}

.fa-mastodon::before {
  content: "M";
}

.fa-link::before {
  content: "🔗";
}

.fa-arrow-right-from-bracket::before {
  content: "⇱";
}
