/* ============================================================
   LoanCheck — Brand tokens (from official brand sheet)
   Single source of truth for the site's look.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
  /* Brand colors */
  --navy:        #0D1B2A;   /* deep ink / dark surfaces */
  --brand:       #2563EB;   /* primary blue */
  --brand-dark:  #1d4fd7;   /* blue pressed */
  --lime:        #A3F15C;   /* accent / CTA */
  --lime-dark:   #8ad63f;   /* accent pressed */
  --brand-pale:  #E6F0FF;   /* tinted surfaces */
  --surface-2:   #F3F4F6;   /* alt section background */

  /* Aliases used across components */
  --accent:      var(--lime);
  --accent-dark: var(--lime-dark);

  /* Ink & text */
  --ink:   #0D1B2A;
  --body:  #384152;
  --muted: #6b7280;
  --line:  #e6e9f0;
  --surface: #ffffff;

  /* Type — Plus Jakarta Sans for everything (headings + body) */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape & depth */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 1px 3px rgba(13,27,42,.08);
  --shadow-md: 0 10px 30px rgba(13,27,42,.10);
  --shadow-lg: 0 30px 70px rgba(13,27,42,.18);

  --maxw: 1180px;
}

/* ── Editorial inline figure (shared across articles & pages) ── */
.art-figure { margin: 34px 0; }
.art-figure .art-figimg { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: #0D1B2A; box-shadow: 0 24px 50px -30px rgba(13,27,42,.5); }
.art-figure .art-figimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.art-figure figcaption { margin-top: 12px; font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.5; }
.art-figure figcaption strong { color: var(--ink); font-weight: 700; }

/* ── Inline photo band for product / content pages ── */
.photo-band { position: relative; width: 100%; aspect-ratio: 21 / 9; border-radius: 22px; overflow: hidden; background: #0D1B2A; box-shadow: 0 30px 60px -34px rgba(13,27,42,.5); }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-band .pb-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,16,30,.72) 0%, rgba(9,16,30,.42) 45%, rgba(9,16,30,0) 78%); display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(24px, 5vw, 60px); }
.photo-band .pb-overlay .pb-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #A3F15C; margin-bottom: 12px; }
.photo-band .pb-overlay h3 { color: #fff; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.18; margin: 0; max-width: 560px; }
.photo-band .pb-overlay p { color: rgba(255,255,255,.82); font-size: 15px; margin: 12px 0 0; max-width: 480px; }
@media (max-width: 640px) { .photo-band { aspect-ratio: 4 / 3; } .photo-band .pb-overlay { background: linear-gradient(0deg, rgba(9,16,30,.85) 0%, rgba(9,16,30,.45) 55%, rgba(9,16,30,.2) 100%); justify-content: flex-end; padding-bottom: 24px; } }
