/* ============================================================
   Sound Like You — pain-acknowledgment section
   Lives between Quiz and About. Scoped with .sl- prefix.
   ============================================================ */

.sl {
  background: var(--bg);
}
.sl__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Left column — headline + closing */
.sl__head {
  position: sticky;
  top: 120px;
}
.sl__head .eyebrow { margin-bottom: 22px; }
.sl__head h2 { margin: 0 0 24px; }
.sl__head h2 em { color: var(--accent); font-style: italic; }
.sl__head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 36ch;
  margin: 0 0 32px;
}
.sl__payoff {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  padding: 22px 24px;
  background: var(--bg-2);
  border-left: 2px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin: 36px 0 28px;
  max-width: 38ch;
}
.sl__payoff strong { color: var(--accent); font-weight: 500; font-style: italic; }

/* Right column — the list */
.sl__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sl__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: transform .35s ease;
}
.sl__item:last-child { border-bottom: 1px solid var(--line); }
.sl__item:hover { transform: translateX(8px); }
.sl__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  padding-top: 8px;
}
.sl__txt {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.sl__txt em {
  font-style: italic;
  color: var(--accent);
}

.sl__cta-row {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .sl__grid { grid-template-columns: 1fr; gap: 40px; }
  .sl__head { position: static; }
}
