/* Fisherman's Memoir — サポート（OFUSE 投げ銭）
 *   - 各話末尾のサポートカード（.fm-support-card、the_content フィルタで追加）
 *   - OFUSE ボタン（.fm-ofuse-btn）
 *   - /support ページの中央寄せ（.fm-support）
 */

/* ================= サポートカード（各話末尾） ================= */
.fm-support-card{
  max-width:680px;
  margin:3.2em auto 0;
  padding:30px 32px;
  background:var(--fm-paper-2);
  border:1px solid var(--fm-rope-dim);
  text-align:center;
}
.fm-support-card__lead{
  margin:0 0 18px;
  font-family:var(--fm-serif-body);
  font-size:15px;
  line-height:1.9;
  color:var(--fm-sea);
}
.fm-support-card__note{
  margin:14px 0 0;
  font-family:var(--fm-sans-jp);
  font-size:11px;
  letter-spacing:.06em;
  color:var(--fm-fog);
}

/* ================= OFUSE ボタン ================= */
.fm-ofuse-btn,
.post_content a.fm-ofuse-btn{
  display:inline-block;
  background:var(--fm-rust);
  color:var(--fm-paper) !important;
  font-family:var(--fm-sans-jp);
  font-size:13px;
  font-weight:700;
  letter-spacing:.1em;
  padding:14px 30px;
  border-radius:0;
  text-decoration:none;
}
.fm-ofuse-btn:hover,
.post_content a.fm-ofuse-btn:hover{
  background:var(--fm-rust-deep);
  color:var(--fm-paper) !important;
}

/* ================= 夜の海モード ================= */
html[data-fm-theme="night"] .fm-support-card{
  background:#132132;
  border-color:#2a3a4d;
}
html[data-fm-theme="night"] .fm-support-card__lead{ color:var(--fm-rope); }

/* ================= /support ページ ================= */
.fm-support{ text-align:center; }
.fm-support .fm-ofuse-btn,
.fm-support a.fm-ofuse-btn{
  margin-top:1em;
  font-size:14px;
  padding:16px 42px;
}
