/**
 * Дополнение к FA 3.2 родителя: глифа Telegram в старом webfont нет.
 * Подключается brands.min.css (Font Awesome 6 Brands).
 *
 * Родитель задаёт [class^="icon-"] → шрифт FontAwesome 3 на всех icon-*,
 * из‑за этого у разметки <span class="icon-fa fa-telegram"> псевдоэлемент
 * тянет старый шрифт. Переопределяем на Brands + тот же код, что в FA6 .fa-telegram.
 */
.icon-telegram::before,
.icon-fa.fa-telegram::before {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f2c6";
}

.icon-fa.fa-telegram {
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	font-style: normal;
}

/* [icon name="icon-fa fas fa-paper-plane"] — Solid, не логотип Telegram */
.icon-fa.fas.fa-paper-plane::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f1d8";
}

.icon-fa.fas.fa-paper-plane {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-style: normal;
}
