/* PC 端的字級下限：15px。

   產品規則，不是某一個元件的樣式，所以集中在這一支、最後載入。
   分散到各檔案逐條改的話，手機也會跟著變大——那條規則只約束 PC。

   沒有列進來的：
   - 刻意保留的小字：地圖釘上的標籤、手機框的狀態列、圖例色塊旁的說明。
     那些拉到 15px 會把地圖蓋掉、手機框也會失真。
   - @media (max-width: …) 裡的宣告：那是手機專用的，跟這條規則無關。

   掃描涵蓋 px / rem / pt / em 四種單位——style.css 整支是用 pt 寫的
   （11pt = 14.7px），只認 px 跟 rem 會整批漏掉。

   這一份是掃出來的。改動任何字級之後要重掃，否則會把剛調大的地方壓回 15px。

   分界 992px 跟全站一致（CLAUDE.md）。 */
@media (min-width: 992px) {

  /* --- experience.css（原本 10.9–14.7px） --- */
  .board-overflow,
  .map-locate-btn,
  .map-locate-status,
  .map-canvas .mapboxgl-popup-content,
  .pin,
  .live-loading__text,
  .live-error__detail,
  .parking-list-legend,
  .parking-list-count,
  .parking-card-meta,
  .cms-list-count,
  .event-popup__type,
  .event-popup__title,
  .event-popup__location,
  .cameras-list-count, .cameras-list-stats,
  .cameras-list-stats,
  .camera-card-location, .camera-card-direction, .camera-card-dept,
  .camera-card-limit,
  .camera-popup__kind,
  .camera-popup__title,
  .camera-popup__limit, .camera-popup__direction,
  .parking-list-note,
  .parking-card-type,
  .tunnel-picker label,
  .tunnel-direction-label,
  .tunnel-direction .tunnel-confidence, .tunnel-confidence,
  .tunnel-warning,
  .live-partial,
  .live-partial__mark,
  .lane-speed span,
  .lane-tag,
  .lane-occ,
  .cctv-list-count,
  .cctv-live-fallback, .cctv-live-missing,
  .cctv-live-idle,
  .cctv-card-note,
  .ev-list-count,
  .ev-fast,
  .ev-card-city,
  .traffic-detail-empty,
  .traffic-detail-type,
  .traffic-detail-alert,
  .traffic-detail-road,
  .traffic-detail-stats div,
  .traffic-card-alert,
  .traffic-card-road,
  .traffic-card-type,
  .traffic-popup__type,
  .traffic-card-speed,
  .traffic-popup__road,
  .traffic-popup__name,
  .traffic-popup__speed,
  .events-list-count,
  .event-card-location, .event-card-impact, .event-card-time,
  .event-card-nocoords,
  .event-card-time,
  .chip,
  .tts-voices__label,
  .tts-hint {
    font-size: 15px;
  }

  /* --- navi-go.css（原本 6.1–14.7px） --- */
  .pricing-currency,
  .pricing-amount small,
  .pricing-note,
  .pricing-cta,
  .comment-form-block .js-captcha-error,
  .site-footer__brand p,
  .site-footer__col h3,
  .site-footer__col a,
  .site-footer__col a.site-footer__qr-item,
  .site-footer__legal {
    font-size: 15px;
  }

  /* --- pricing.css（原本 12.0–14.5px） --- */
  .plan__badge,
  .plan__sub,
  .plan__list li,
  .promo__copy,
  .promo__msg {
    font-size: 15px;
  }

  /* --- style.css（原本 14.7–14.7px） --- */
  .reply,
  .reply span {
    font-size: 15px;
  }

  /* --- Bootstrap 的預設值 ---
     掃描只看本專案的 CSS，掃不到 CDN 上的 bootstrap.min.css。 */
  .small,
  small,
  h6,
  .h6 {
    font-size: 15px;
  }
}
