/* ===========================================================================
   Nominations — "Albums we missed" voteable leaderboard + signpost
   Mounted on the 1–100 list page. Editorial aesthetic, matches the site.
   =========================================================================== */

/* ---- Signpost in the list header ---- */
.lp-nom-signpost {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 11px 18px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: 999px; cursor: pointer; text-align: left;
  transition: border-color 0.15s, transform 0.1s;
}
.lp-nom-signpost:hover { border-color: var(--accent); transform: translateY(-1px); }
.lp-nom-signpost strong { font-weight: 600; }
.lp-nom-signpost-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: nomPulse 2.4s ease-out infinite;
}
@keyframes nomPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 55%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---- Section ---- */
.nom {
  max-width: 880px; margin: 88px auto 0; padding: 0 24px;
  scroll-margin-top: 90px;
}
.nom-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.nom-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.nom-title {
  font-family: var(--serif); font-weight: 400; line-height: 1.05;
  font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.02em; color: var(--ink);
  margin: 0 0 16px;
}
.nom-lede {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 24px;
}
.nom-cta {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 1px solid var(--ink);
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.nom-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

.nom-empty {
  text-align: center; font-family: var(--sans); font-size: 15px;
  color: var(--ink-mute); padding: 40px 0; font-style: italic;
}

/* ---- Leaderboard ---- */
.nom-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.nom-row {
  display: grid; grid-template-columns: 44px 56px 1fr auto;
  gap: 16px; align-items: center;
  background: var(--paper); padding: 16px 18px;
}
.nom-rank {
  font-family: var(--serif); font-size: 26px; color: var(--ink-mute);
  text-align: center; line-height: 1;
}
.nom-row:nth-child(1) .nom-rank { color: var(--accent); }
.nom-cover, .nom-result-cover, .nom-confirm-cover {
  width: 56px; height: 56px; overflow: hidden; border-radius: 3px;
  background: var(--paper-2); flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 12px 24px -16px rgba(0,0,0,.4);
}
.nom-cover img, .nom-result-cover img, .nom-confirm-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nom-cover-blank { width: 100%; height: 100%; background: var(--paper-2); }
.nom-meta { min-width: 0; }
.nom-album {
  font-family: var(--serif); font-size: 19px; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.01em;
}
.nom-artist { font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.nom-pitch {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-2); margin-top: 6px; line-height: 1.4;
}
.nom-by {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: 6px;
}
.nom-vote { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.nom-up {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  background: var(--paper-2); border: 1px solid var(--rule); color: var(--ink-mute);
  transition: all 0.13s;
}
.nom-up:hover { border-color: var(--accent); color: var(--accent); }
.nom-up.on { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.nom-score { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); }

/* ---- Nominate modal ---- */
.nom-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(23, 19, 15, 0.55); backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 8vh 16px 16px; overflow-y: auto;
}
.nom-modal-card {
  width: 100%; max-width: 520px; background: var(--paper);
  border: 1px solid var(--rule); border-radius: 16px; padding: 24px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.nom-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.nom-modal-head h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0; color: var(--ink); }
.nom-modal-x {
  background: none; border: 0; font-size: 26px; line-height: 1;
  color: var(--ink-mute); cursor: pointer; padding: 0 4px;
}
.nom-modal-x:hover { color: var(--ink); }
.nom-search input {
  width: 100%; font-family: var(--sans); font-size: 15px;
  padding: 12px 14px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 9px; outline: none;
}
.nom-search input:focus { border-color: var(--accent); }
.nom-search-results { margin-top: 12px; display: flex; flex-direction: column; gap: 1px; max-height: 46vh; overflow-y: auto; }
.nom-result {
  display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center;
  background: var(--paper-2); border: 0; padding: 9px 11px; cursor: pointer;
  text-align: left; border-radius: 8px; transition: background 0.12s;
}
.nom-result:hover { background: var(--rule); }
.nom-result-cover { width: 48px; height: 48px; }
.nom-result-t { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.2; }
.nom-result-a { font-family: var(--sans); font-size: 13px; color: var(--ink-2); margin-top: 2px; }

/* confirm step */
.nom-confirm-album { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.nom-confirm-cover { width: 72px; height: 72px; }
.nom-change {
  margin-top: 6px; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 13px; color: var(--accent); text-decoration: underline;
}
.nom-pitch-label { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.nom-pitch-label span { color: var(--ink-mute); }
.nom-pitch-input {
  width: 100%; font-family: var(--sans); font-size: 14px; line-height: 1.5;
  padding: 10px 12px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 9px; outline: none; resize: vertical;
  margin-bottom: 16px;
}
.nom-pitch-input:focus { border-color: var(--accent); }
.nom-submit {
  width: 100%; font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 0;
  padding: 13px; border-radius: 9px; cursor: pointer; transition: background 0.15s;
}
.nom-submit:hover { background: var(--accent); }
.nom-submit:disabled { opacity: 0.6; cursor: default; }
.nom-note { margin-top: 12px; font-family: var(--sans); font-size: 13px; color: var(--accent); text-align: center; }

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .nom { margin-top: 56px; }
  .nom-row { grid-template-columns: 30px 48px 1fr auto; gap: 11px; padding: 13px 12px; }
  .nom-cover { width: 48px; height: 48px; }
  .nom-rank { font-size: 20px; }
  .nom-album { font-size: 16px; }
  .nom-up { width: 34px; height: 34px; }
  .nom-modal { padding: 4vh 10px 10px; }
}

/* ===========================================================================
   Three-way engagement fork (replaces the single Make Your Ten banner)
   =========================================================================== */
.fork {
  margin: 8px 0 32px; padding: 22px 24px;
  background: var(--ink); color: var(--paper);
  border-radius: 14px;
}
.fork-head { text-align: center; max-width: 620px; margin: 0 auto 16px; }
.fork-head .kick {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: color-mix(in oklab, var(--paper) 55%, transparent);
  margin-bottom: 6px;
}
.fork-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--paper);
}
.fork-head h3 em { font-style: italic; color: var(--accent); }
.fork-head p {
  font-family: var(--sans); font-size: 14px; line-height: 1.45;
  color: color-mix(in oklab, var(--paper) 78%, transparent); margin: 0;
}
.fork-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fork-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: 11px;
  background: color-mix(in oklab, var(--paper) 7%, transparent);
  border: 1px solid color-mix(in oklab, var(--paper) 16%, transparent);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.fork-card:hover { background: color-mix(in oklab, var(--paper) 12%, transparent); border-color: var(--accent); transform: translateY(-2px); }
.fork-card--feature { background: color-mix(in oklab, var(--accent) 16%, transparent); border-color: color-mix(in oklab, var(--accent) 45%, transparent); }
.fork-card--feature:hover { background: color-mix(in oklab, var(--accent) 24%, transparent); }
.fork-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px; margin-bottom: 2px;
  background: color-mix(in oklab, var(--paper) 12%, transparent);
  color: var(--paper);
}
.fork-ico svg { width: 18px; height: 18px; }
.fork-card--feature .fork-ico { background: var(--accent); }
.fork-card-t {
  font-family: var(--serif); font-size: 17px; line-height: 1.2;
  color: var(--paper); letter-spacing: -0.01em;
}
.fork-card-d {
  font-family: var(--sans); font-size: 12.5px; line-height: 1.4;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.fork-go {
  margin-top: auto; padding-top: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
@media (max-width: 760px) {
  .fork { padding: 18px 16px; }
  .fork-cards { grid-template-columns: 1fr; }
  .fork-card { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .fork-ico { margin-bottom: 0; }
  .fork-card-t { flex: 1; min-width: 0; }
  .fork-card-d { flex-basis: 100%; }
  .fork-go { margin-top: 0; flex-basis: 100%; padding-top: 4px; }
}

/* ===========================================================================
   List discussion thread
   =========================================================================== */
.ld { max-width: 760px; margin: 72px auto 0; padding: 0 24px; scroll-margin-top: 90px; }
.ld-head { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.ld-composer { margin-bottom: 32px; }
.ld-composer textarea, .ld-reply-box textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; line-height: 1.55;
  padding: 14px 16px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 11px; outline: none; resize: vertical;
}
.ld-composer textarea:focus, .ld-reply-box textarea:focus { border-color: var(--accent); }
.ld-post {
  margin-top: 10px; font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 0;
  padding: 11px 22px; border-radius: 9px; cursor: pointer; transition: background 0.15s;
}
.ld-post:hover { background: var(--accent); }
.ld-post:disabled { opacity: 0.5; cursor: default; }
.ld-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ld-c {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 12px; padding: 16px 18px;
}
.ld-body { min-width: 0; }
.ld-meta { margin-bottom: 6px; }
.ld-name {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700; color: var(--ink);
}
.ld-text { font-family: var(--body-serif); font-size: 15px; line-height: 1.55; color: var(--ink-2); white-space: pre-wrap; }
.ld-actions { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
/* like / dislike — mirrors the deep-dive comment voting */
.ld-votes { display: inline-flex; align-items: center; gap: 8px; }
.ld-vote {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
  background: transparent; border: 1px solid var(--rule); color: var(--ink-mute);
  transition: all 0.13s;
}
.ld-vote.up:hover, .ld-vote.up.on { border-color: var(--accent); color: var(--accent); }
.ld-vote.down:hover, .ld-vote.down.on { border-color: var(--ink); color: var(--ink); }
.ld-score { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink); min-width: 14px; text-align: center; }
.ld-reply-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-mute);
}
.ld-reply-btn:hover { color: var(--accent); }
.ld-reply-box { margin-top: 12px; }
.ld-replies { list-style: none; margin: 14px 0 0; padding: 0 0 0 16px; border-left: 2px solid var(--rule); }
.ld-replies .ld-c { background: var(--paper-2); border: none; border-radius: 0; padding: 12px 14px; }
@media (max-width: 640px) {
  .ld { margin-top: 52px; }
  .ld-c { padding: 14px 14px; }
}

/* Your Turn fork: now two cards (Make Your Ten removed) — balance as a centred 2-up */
.fork-cards { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .fork-cards { grid-template-columns: 1fr; } }
