/*!
 * Font Awesome Pro 6 — SUBSET cho monatheme.
 * Build từ fontawesome.css gốc. Chỉ chứa icon đang dùng trong site:
 *   fa-solid:   arrow-left, arrow-right, caret-down, chevron-down,
 *               chevron-left, chevron-right, magnifying-glass, phone
 *   fa-light:   chevron-up
 *   fa-regular: chevron-left, chevron-right
 *
 * Cập nhật danh sách icon: chạy grep `fa-(solid|light|regular)` trong theme,
 * thêm rule mới + content unicode lấy từ fontawesome.css gốc.
 */

/* === Base === */
.fa, .fas, .fa-solid, .fa-light, .fal, .fa-regular, .far {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "Font Awesome 6 Pro";
}

.fa-solid, .fas { font-weight: 900; }
.fa-light, .fal { font-weight: 300; }
.fa-regular, .far { font-weight: 400; }

/* === @font-face — chỉ 3 weight được dùng === */
@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(fa-solid-900.woff2) format("woff2"), url(fa-solid-900.ttf) format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url(fa-light-300.woff2) format("woff2"), url(fa-light-300.ttf) format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(fa-regular-400.woff2) format("woff2"), url(fa-regular-400.ttf) format("truetype");
}

/* === Icon content === */
.fa-arrow-left:before        { content: "\f060"; }
.fa-arrow-right:before       { content: "\f061"; }
.fa-caret-down:before        { content: "\f0d7"; }
.fa-chevron-down:before      { content: "\f078"; }
.fa-chevron-left:before      { content: "\f053"; }
.fa-chevron-right:before     { content: "\f054"; }
.fa-chevron-up:before        { content: "\f077"; }
.fa-magnifying-glass:before,
.fa-search:before            { content: "\f002"; }
.fa-phone:before             { content: "\f095"; }
