/*
 * TTFC FontAwesome Subset — self-hosted, 5 glyphs only.
 *
 * Glyphs included (built from FA 6.4.0 Free solid with pyftsubset):
 *   U+F29A  fa-universal-access
 *   U+F11C  fa-keyboard
 *   U+F4AD  fa-comment-dots
 *   U+F110  fa-spinner
 *   U+F1D8  fa-paper-plane
 *
 * שימוש מומלץ: <i class="fa-ttfc fa-spinner fa-spin" aria-hidden="true"></i>
 *
 * Legacy aliases (.fas / .fa / .far) מספקים תאימות לאחור עם מחרוזות
 * שכתובות בתוכן (posts/options) או ב-HTML קיים שלא עודכן.
 */

@font-face {
    font-family: 'FA Subset';
    src: url('fa-subset.woff2') format('woff2');
    font-display: swap;
    font-weight: 900;
    font-style: normal;
}

.fa-ttfc,
.fas,
.fa-solid,
.far,
.fa-regular,
.fa {
    font-family: 'FA Subset';
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-ttfc.fa-universal-access::before,
.fas.fa-universal-access::before,
.fa.fa-universal-access::before,
.fa-universal-access::before { content: "\f29a"; }

.fa-ttfc.fa-keyboard::before,
.fas.fa-keyboard::before,
.far.fa-keyboard::before,
.fa.fa-keyboard::before,
.fa-keyboard::before { content: "\f11c"; }

.fa-ttfc.fa-comment-dots::before,
.fas.fa-comment-dots::before,
.far.fa-comment-dots::before,
.fa.fa-comment-dots::before,
.fa-comment-dots::before { content: "\f4ad"; }

.fa-ttfc.fa-spinner::before,
.fas.fa-spinner::before,
.fa.fa-spinner::before,
.fa-spinner::before { content: "\f110"; }

.fa-ttfc.fa-paper-plane::before,
.fas.fa-paper-plane::before,
.far.fa-paper-plane::before,
.fa.fa-paper-plane::before,
.fa-paper-plane::before { content: "\f1d8"; }

.fa-spin {
    animation: fa-spin 2s linear infinite;
}

@keyframes fa-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
