/* Credit pack list: rendered by public/js/credits.js, shared by every
   purchase entry point in every Presence app -- the inventory paywall
   modal, the new-brief/new-story exhausted gate, the short-by-one gate, and
   the account page's Credits section -- so all of them render identically.
   Promoted here from public/story/story.css on milestone 6 of Presence
   Brief alongside credits.js itself (see that file's header). Relies on the
   house tokens in ../styles.css (--rule, --fill-bg, --navy, --ink, etc). */
.iv-pack-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.iv-pack { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 0.5px solid var(--rule); border-radius: 8px; padding: 12px 14px; background: var(--fill-bg); }
.iv-pack-name { font-family: var(--ui); font-size: 14px; font-weight: 600; color: var(--ink); display: block; }
.iv-pack-detail { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); display: block; margin-top: 2px; }
.iv-pack-buy { background: var(--navy); color: #fff; border: none; border-radius: 6px; padding: 9px 16px;
  font-family: var(--ui); font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap; }
.iv-pack-buy:hover { background: #1a2d45; }
.iv-pack-buy:disabled { opacity: .6; cursor: default; }
.iv-pack-note { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); margin-top: 4px; }
