/* ══════════════════════════════════════════════════════
   SCORE PAGES — /wonderlic-score-15 .. /wonderlic-score-40
   ══════════════════════════════════════════════════════ */

.score-page {
  max-width: 720px;
}

.score-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-text);
  margin: 8px 0 28px;
}

/* ── Adjacent-score navigation ────────────────────────── */
.score-neighbor-nav {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--lp-border);
}

.score-neighbor-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--lp-text-faint);
  margin: 0 0 16px;
  text-align: center;
}

.score-neighbor-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.score-neighbor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.score-neighbor:hover {
  border-color: rgba(67, 97, 238, 0.3);
  background: #fafbff;
}

.score-neighbor-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1;
}

.score-neighbor-pct {
  font-size: 12px;
  color: var(--lp-text-muted);
}

@media (max-width: 600px) {
  .score-neighbor-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
