/*
 * FA4 → FA6: Brücke für die vier Icon-Namen, die es in Font Awesome 6
 * nicht mehr gibt. Das Markup in den Komponenten stammt aus FA4-Zeiten
 * und benutzt das damals übliche "-o"-Suffix für die Outline-Variante.
 *
 * Abgebildet wird jeweils auf die Solid-Variante von FA6 — die ist im
 * Free-Paket garantiert enthalten, die Outline-Schnitte nicht durchgängig.
 * Optisch also gefüllt statt umrandet.
 *
 * Wird diese Datei irgendwann überflüssig? Ja — sobald das Markup in den
 * Komponenten auf die FA6-Namen umgestellt ist:
 *   fa-file-pdf-o      → fa-file-pdf
 *   fa-file-text-o     → fa-file-lines
 *   fa-pencil-square-o → fa-pen-to-square
 *   fa-thumbs-o-up     → fa-thumbs-up
 */

.fa-file-pdf-o,
.fa-file-text-o,
.fa-pencil-square-o,
.fa-thumbs-o-up {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-file-pdf-o::before      { content: "\f1c1"; }  /* file-pdf */
.fa-file-text-o::before     { content: "\f15c"; }  /* file-lines */
.fa-pencil-square-o::before { content: "\f044"; }  /* pen-to-square */
.fa-thumbs-o-up::before     { content: "\f164"; }  /* thumbs-up */
