/* comparemyloan — Shop wizard extras. Rides on wizard2.css (.w2-*) and the
   :root tokens in styles.css; only what the quote ladder adds is here. */

/* "Quote check" interstitial readout */
.ws-quote {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card); margin: 16px 0 14px; overflow: hidden;
}
.ws-quote-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 14px; gap: 12px;
}
.ws-quote-row + .ws-quote-row { border-top: 1px solid var(--border-soft); }
.ws-quote-k { font-family: var(--mono); font-size: 9px; letter-spacing: 0.13em; color: var(--dim); white-space: nowrap; }
.ws-quote-v { font-family: var(--mono); font-size: 17px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.ws-quote-row:last-child .ws-quote-v { color: var(--accent); }

/* secondary "skip" button under the Loan-Estimate rung */
.ws-skip { margin-top: 10px; }
