/* Fix for Font Awesome font paths — overrides all @font-face rules from all.min.css */
/* Using absolute paths to ensure fonts load correctly regardless of CSS location */

/* Font Awesome 6 */
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Font Awesome 5 (compatibility) */
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-regular-400.woff2") format("woff2");
}

/* Legacy FontAwesome v4 compatibility */
@font-face {
    font-family: "FontAwesome";
    font-style: normal;
    font-display: block;
    src: url("/static/vendor/font-awesome/webfonts/fa-solid-900.woff2") format("woff2");
}
