@charset "UTF-8";
/*
 * Material Icons — self-host 版（2026-09 無障礙化）
 * -----------------------------------------------------------------------------
 * 原本以 <link href="https://fonts.googleapis.com/css2?family=Material+Icons"> 引用，
 * 但 Google 提供的樣式表把字級寫成 24 像素的絕對值，違反 CS2140401C（字級須用相對單位）。
 * 外部樣式表無法修改，故改為由本站提供這份樣式，字級改成 rem（根字級 16px → 24px = 1.5rem）。
 *
 * 字型檔仍指向 Google 的 CDN（fonts.gstatic.com）；若日後要完全本機化，
 * 只要把下列 .ttf 下載到 public/assets/frontend/fonts/material-icons/ 後改寫 src 即可。
 * 字型版本：Material Icons v145（2026-09 取自 fonts.googleapis.com）
 */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(https://fonts.gstatic.com/s/materialicons/v145/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem; /* 原為 24 像素；CS2140401C 要求相對單位 */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
