/* ============================================================
   quest-closing.css — Takumi Senpai · Quest Closing Line
   Path: /css/quest-closing.css
   Load on: quest article pages, after style.css

   これはCTAではない。ボタン・矢印・アイコン・絵文字・枠線は
   一切使わない。余白だけで「本文とは別のもの」だと伝える。
   フェードインなどのモーションも付けない
   （最初から静かにそこにあった、という体にするため）。
   ============================================================ */

#quest-closing {
  max-width: 640px;
  margin: 120px auto 160px;
  padding: 0 24px;
  text-align: center;
}

.qc-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: rgb(240 236 228);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   狭い画面でも「本文より明らかに広い余白」であることだけは保つ。
   ════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  #quest-closing {
    margin: 72px auto 120px;
    padding: 0 20px;
  }
}
