/* ============================================================
 * custom.css — 部署後的樣式微調層（載入於 style.css 之後）
 * ------------------------------------------------------------
 * ・這支檔案載在 style.css 之後，因此可直接覆寫既有樣式（靠來源順序，免 !important）。
 * ・pack 會原樣複製此檔；若要保留「on-server 手改」的內容，重新上傳時「不要覆蓋」這支即可。
 * ・用途：資料已能自助編輯後，若需在伺服器端臨時微調樣式（換色、間距…），寫在這裡，
 *         不必改 SCSS / 重新編譯。日常樣式仍建議改 style.scss 的源頭。
 * ============================================================ */

/* ── 影片彈窗 footer 的報名連結：加大字級 + 主色 + 粗底線 ────── */
.swal_video .swal2-footer {
  padding-top: 1rem;
  text-align: center;
}

.swal_video .swal_txt {
  display: inline-block;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #d60067;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 0.25rem;
  transition: color 0.25s;
  margin: 0;
}

.swal_video .swal_link {
  text-decoration: underline;
}

/* style.css 的 reset 有 a:hover{text-decoration:none} → 明確保留底線 */
.swal_video .swal_link:hover {
  color: #ff3d9a;
}
