/*
 * Minimal Font Awesome subset — star rating icons only (.fa-star, .fa-star-half-alt).
 * Replaces the full all.css/fontawesome.min.css (165KB) that was removed as
 * apparently-unused; that check missed the bare "fa"/"fa-regular" classes used
 * for rating stars in components/sections/casino_sites.php.
 */
@font-face {
	font-family: "Font Awesome 7 Free";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url("../fonts/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("../fonts/fa-regular-400.woff2") format("woff2");
}
.fa,
.fa-regular {
	font-family: "Font Awesome 7 Free";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
.fa {
	font-weight: 900;
}
.fa-regular {
	font-weight: 400;
}
.fa-star::before {
	content: "\f005";
}
.fa-star-half-alt::before {
	content: "\f5c0";
}

