/*
 * Font Awesome 7 Custom Subset for Verbundenleben
 * Based on Font Awesome Free 7.1.0
 * Contains only the ~43 icons actually used on the site.
 *
 * HOW TO ADD NEW ICONS:
 * 1. Find the icon name on https://fontawesome.com/icons
 * 2. Look up the unicode value in all.css (search for .fa-ICONNAME)
 * 3. Add a new line in the appropriate section below (Solid, Regular, or Brands)
 *    Format:  .fa-ICONNAME { --fa: "\UNICODE"; }
 * 4. Bump the version in functions.php to bust the cache
 */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
.fa-solid,
.fa-regular,
.fa-brands,
.fa-classic,
.fas,
.far,
.fab,
.fa {
  --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: var(--fa-display, inline-block);
  font-family: var(--_fa-family);
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: var(--fa-style, 900);
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  width: var(--fa-width, 1.25em);
}

:is(.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-classic, .fa)::before {
  content: var(--fa)/"";
}

@supports not (content: ""/"") {
  :is(.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-classic, .fa)::before {
    content: var(--fa);
  }
}

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Free";
  --fa-font-solid: normal 900 1em/1 var(--fa-family-classic);
  --fa-style-family-classic: var(--fa-family-classic);
  --fa-family-brands: "Font Awesome 7 Brands";
  --fa-font-brands: normal 400 1em/1 var(--fa-family-brands);
}

/* ==========================================================================
   @FONT-FACE (with font-display: swap for performance)
   ========================================================================== */
@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

/* FA5 compatibility aliases (used by older class names) */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: swap;
  font-weight: 900;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: swap;
  font-weight: 400;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-display: swap;
  font-weight: 400;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

/* ==========================================================================
   FONT FAMILY ASSIGNMENTS
   ========================================================================== */
.fas,
.fa-solid {
  --fa-family: var(--fa-family-classic);
  --fa-style: 900;
}

.far,
.fa-regular {
  --fa-family: var(--fa-family-classic);
  --fa-style: 400;
}

.fab,
.fa-brands,
.fa-classic.fa-brands {
  --fa-family: var(--fa-family-brands);
  --fa-style: 400;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

/* ==========================================================================
   SOLID ICONS (fas)
   Add new solid icons here. Format: .fa-name { --fa: "\unicode"; }
   ========================================================================== */
.fa-heart { --fa: "\f004"; }
.fa-download { --fa: "\f019"; }
.fa-volume-up { --fa: "\f028"; }
.fa-book { --fa: "\f02d"; }
.fa-bookmark { --fa: "\f02e"; }
.fa-play { --fa: "\f04b"; }
.fa-question-circle { --fa: "\f059"; }
.fa-info-circle { --fa: "\f05a"; }
.fa-arrow-left { --fa: "\f060"; }
.fa-arrow-right { --fa: "\f061"; }
.fa-gift { --fa: "\f06b"; }
.fa-leaf { --fa: "\f06c"; }
.fa-exclamation-triangle { --fa: "\f071"; }
.fa-chevron-down { --fa: "\f078"; }
.fa-comments { --fa: "\f086"; }
.fa-users { --fa: "\f0c0"; }
.fa-lightbulb { --fa: "\f0eb"; }
.fa-ellipsis-h { --fa: "\f141"; }
.fa-file-pdf { --fa: "\f1c1"; }
.fa-circle-notch { --fa: "\f1ce"; }
.fa-paper-plane { --fa: "\f1d8"; }
.fa-heartbeat { --fa: "\f21e"; }
.fa-balance-scale { --fa: "\f24e"; }
.fa-handshake { --fa: "\f2b5"; }
.fa-gem { --fa: "\f3a5"; }
.fa-hand-holding-heart { --fa: "\f4be"; }
.fa-hands-helping { --fa: "\f4c4"; }
.fa-seedling { --fa: "\f4d8"; }
.fa-user-check { --fa: "\f4fc"; }
.fa-user-friends { --fa: "\f500"; }
.fa-book-open { --fa: "\f518"; }
.fa-feather-alt { --fa: "\f56b"; }
.fa-file-signature { --fa: "\f573"; }
.fa-brain { --fa: "\f5dc"; }
.fa-envelope-open-text { --fa: "\f658"; }
.fa-landmark { --fa: "\f66f"; }
.fa-heart-broken { --fa: "\f7a9"; }
.fa-users-slash { --fa: "\e073"; }

/* ==========================================================================
   REGULAR ICONS (far)
   Add new regular icons here. Format: .fa-name { --fa: "\unicode"; }
   ========================================================================== */
.fa-calendar-alt { --fa: "\f073"; }

/* ==========================================================================
   BRAND ICONS (fab)
   Add new brand icons here. Format: .fa-name { --fa: "\unicode"; }
   ========================================================================== */
.fa-youtube { --fa: "\f167"; }
.fa-instagram { --fa: "\f16d"; }
.fa-whatsapp { --fa: "\f232"; }
.fa-telegram-plane { --fa: "\f2c6"; }
