/* 1) Подключаем сам шрифт Font Awesome 6 Brands */
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/webfonts/fa-brands-400.woff2") format("woff2"),
    url("/webfonts/fa-brands-400.ttf")  format("truetype");
}

/* 2) Базовые правила для «брендовых» иконок */
.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3) Класс размера, если вы используете fa-lg */
.fa-lg {
    font-size: 1.25em;
    line-height: .05em;
    vertical-align: -0.075em;
}

/* 4) Конкретные иконки, которые вы рендерите */
.fa-vk:before             { content: "\f189"; }  /* ВКонтакте */
.fa-odnoklassniki:before  { content: "\f263"; }  /* Одноклассники */
.fa-telegram-plane:before { content: "\f3fe"; }  /* Telegram */
.fa-twitter:before        { content: "\f099"; }  /* Twitter */
.fa-viber:before          { content: "\f409"; }  /* Viber */
.fa-whatsapp:before       { content: "\f232"; }  /* WhatsApp */
