/* 精簡版圖示表:只保留本站實際用到的 21 個圖示。
   原始 ph-light/style.css 與 ph-fill/style.css 各含 1531 條規則、
   合計 173KB 且會阻塞算繪,而首頁只用得到其中 21 條。
   字型檔本身也子集化成同樣這 21 個字:ph-light 151.6KB -> 3.9KB、ph-fill 132KB -> 2.9KB。
   原檔仍留在 ph-light/ 與 ph-fill/ 下,要加圖示時從那裡抄一條規則過來,
   並且用同一份碼位清單把兩支 -min.woff2 一起重新產生,只改 CSS 會變成豆腐字:

     pyftsubset fonts/ph-light/Phosphor-Light.woff2 --unicodes="U+E058,U+E066,..." \
       --flavor=woff2 --output-file=fonts/ph-light-min.woff2

   兩家族刻意保留同一組圖示,避免 light 有、fill 沒有的靜默缺字。 */

@font-face {
  font-family: "Phosphor-Light";
  src: url("./ph-light-min.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.ph-light {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Light" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ph-light.ph-arrow-left:before {
  content: "\e058";
}
.ph-light.ph-arrow-line-up:before {
  content: "\e066";
}
.ph-light.ph-arrow-right:before {
  content: "\e06c";
}
.ph-light.ph-chat-circle-text:before {
  content: "\e16e";
}
.ph-light.ph-cherries:before {
  content: "\e830";
}
.ph-light.ph-clock-counter-clockwise:before {
  content: "\e1a0";
}
.ph-light.ph-club:before {
  content: "\e1ba";
}
.ph-light.ph-eye:before {
  content: "\e220";
}
.ph-light.ph-eye-slash:before {
  content: "\e224";
}
.ph-light.ph-fish:before {
  content: "\e728";
}
.ph-light.ph-house:before {
  content: "\e2c2";
}
.ph-light.ph-joystick:before {
  content: "\ea5e";
}
.ph-light.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph-light.ph-play:before {
  content: "\e3d0";
}
.ph-light.ph-soccer-ball:before {
  content: "\e716";
}
.ph-light.ph-spade:before {
  content: "\e448";
}
.ph-light.ph-squares-four:before {
  content: "\e464";
}
.ph-light.ph-star:before {
  content: "\e46a";
}
.ph-light.ph-ticket:before {
  content: "\e490";
}
.ph-light.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph-light.ph-x:before {
  content: "\e4f6";
}
@font-face {
  font-family: "Phosphor-Fill";
  src: url("./ph-fill-min.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.ph-fill {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Fill" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ph-fill.ph-arrow-left:before {
  content: "\e058";
}
.ph-fill.ph-arrow-line-up:before {
  content: "\e066";
}
.ph-fill.ph-arrow-right:before {
  content: "\e06c";
}
.ph-fill.ph-chat-circle-text:before {
  content: "\e16e";
}
.ph-fill.ph-cherries:before {
  content: "\e830";
}
.ph-fill.ph-clock-counter-clockwise:before {
  content: "\e1a0";
}
.ph-fill.ph-club:before {
  content: "\e1ba";
}
.ph-fill.ph-eye:before {
  content: "\e220";
}
.ph-fill.ph-eye-slash:before {
  content: "\e224";
}
.ph-fill.ph-fish:before {
  content: "\e728";
}
.ph-fill.ph-house:before {
  content: "\e2c2";
}
.ph-fill.ph-joystick:before {
  content: "\ea5e";
}
.ph-fill.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph-fill.ph-play:before {
  content: "\e3d0";
}
.ph-fill.ph-soccer-ball:before {
  content: "\e716";
}
.ph-fill.ph-spade:before {
  content: "\e448";
}
.ph-fill.ph-squares-four:before {
  content: "\e464";
}
.ph-fill.ph-star:before {
  content: "\e46a";
}
.ph-fill.ph-ticket:before {
  content: "\e490";
}
.ph-fill.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph-fill.ph-x:before {
  content: "\e4f6";
}
