/* ============================================================
   loans.css — Loans page specific styles
   ============================================================ */

/* ── LOAN CARD GRID ── */
.loan-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── LOAN CARD ── */
.loan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.loan-card-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.loan-card-header h3 { color: var(--white); font-size: 1rem; font-weight: 600; }
.loan-card-header .rate {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
}
.loan-card-body { padding: 22px 24px; }

/* ── INFO ROWS ── */
.info-row {
  display: flex; justify-content: space-between;
  margin-bottom: 8px; font-size: 13.5px;
}
.info-row .label { color: var(--grey); }
.info-row .val   { color: var(--ink); font-weight: 600; }

/* ── REQUIREMENTS LIST ── */
.req-list { margin-top: 12px; }
.req-list h4 {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--grey); margin-bottom: 8px;
}
.req-list ul { list-style: none; }
.req-list ul li { font-size: 13px; color: var(--ink); padding: 3px 0; }
.req-list ul li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
