/* ===== 新專案補充樣式（不修改原設計 style.css） ===== */

/* 「了解更多」按鈕：取代原設計的 inline style + onmouseover（配合 CSP 禁用內嵌腳本） */
.btn-more {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 24px;
  background: #003087;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.2s;
}
.btn-more:hover { background: #001f5c; }

.btn-more-alt {
  display: inline-block;
  padding: 11px 28px;
  background: #3a7fd4;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}
.btn-more-alt:hover { background: #2a66b0; }

/* 提示框（印刷頁說明） */
.note-box {
  background: #eef5ff;
  border-left: 4px solid #003087;
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 28px;
}

/* 表單送出成功 / 錯誤訊息 */
.alert-success {
  background: #e8f6ec;
  border: 1px solid #4caf7d;
  color: #1c6b41;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 22px;
  font-size: 15px;
}
.alert-error {
  background: #fdecec;
  border: 1px solid #d9534f;
  color: #a02622;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 22px;
  font-size: 14px;
}
.field-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 4px;
}

/* 蜜罐欄位：對機器人可見、對使用者隱藏 */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 後台編輯器輸出的舊版 HTML 內容 */
.legacy-content {
  font-size: 15px;
  line-height: 1.9;
  color: #33475b;
  overflow-x: auto;
}
.legacy-content img { max-width: 100%; height: auto; }
.legacy-content table { max-width: 100%; }

/* 多段圖文模組（對應舊站 Multi_Content 控制項） */
.module-block { margin-top: 28px; }
.module-item { margin-bottom: 22px; }
.module-item img.module-img { max-width: 100%; height: auto; border-radius: 4px; }
.module-files, .module-links { margin-top: 18px; }
.module-files .fc-title, .module-links .fc-title {
  font-size: 15px;
  font-weight: bold;
  color: #003087;
  margin-bottom: 8px;
}
.module-files ul, .module-links ul { list-style: none; padding: 0; margin: 0; }
.module-files li, .module-links li {
  padding: 7px 0;
  border-bottom: 1px dashed #cfe0ef;
  font-size: 14px;
}
.module-files a, .module-links a { color: #1e5799; }
.module-files a:hover, .module-links a:hover { text-decoration: underline; }

/* 匯款資訊補充說明文字 */
.pay-note { margin-top: 22px; font-size: 13px; color: #7a9ab8; }
.pay-note a { color: #1e5799; text-decoration: underline; }
