/**
 * Icons before links in rich HTML (tel / mailto / http).
 * Used for: .colegia-rich-text-content (public/staff views) and TinyMCE iframe (.mce-content-body).
 * Requires Font Awesome 6 Free (all.min.css) on the page or in TinyMCE content_css.
 */
.colegia-rich-text-content a[href^="tel:"]::before,
.mce-content-body a[href^="tel:"]::before,
#tinymce.mce-content-body a[href^="tel:"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  margin-right: 0.35em;
  display: inline-block;
  text-decoration: none;
}

.colegia-rich-text-content a[href^="mailto:"]::before,
.mce-content-body a[href^="mailto:"]::before,
#tinymce.mce-content-body a[href^="mailto:"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 0.35em;
  display: inline-block;
  text-decoration: none;
}

.colegia-rich-text-content a[href^="http://"]::before,
.colegia-rich-text-content a[href^="https://"]::before,
.colegia-rich-text-content a[href^="//"]::before,
.mce-content-body a[href^="http://"]::before,
.mce-content-body a[href^="https://"]::before,
.mce-content-body a[href^="//"]::before,
#tinymce.mce-content-body a[href^="http://"]::before,
#tinymce.mce-content-body a[href^="https://"]::before,
#tinymce.mce-content-body a[href^="//"]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0c1";
  margin-right: 0.35em;
  display: inline-block;
  text-decoration: none;
}
