/**
 * Propzora Design System — Light fintech (8pt grid)
 * Used across marketing, auth, and dashboard shells.
 */
 html {
  scroll-behavior: smooth;
  /* Forces native form controls (select dropdown popups, scrollbars, etc.)
     to render in light mode regardless of the device/browser OS-level
     dark-mode preference. Without this, a phone set to system dark mode
     renders native <select> option lists as dark-on-dark even while the
     app itself is showing the light theme. Overridden to "dark" below
     when the app's own theme toggle is set to dark. */
  color-scheme: light;
}
html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  max-width: 100%;
}  

 @font-face {
  font-family: 'NairaFallback';
  src: local('Arial'), local('Helvetica');
  unicode-range: U+20A6;
}

:root {
  /* 8pt spacing - more generous */
  --pz-1: 8px;
  --pz-2: 16px;
  --pz-3: 24px;
  --pz-4: 32px;
  --pz-5: 48px;
  --pz-6: 64px;
  --pz-8: 96px;
  --pz-10: 120px;
  --pz-12: 144px;
  --pz-16: 192px;

  /* Neutrals */
  --pz-white: #ffffff;
  --pz-ink: #000000;
  --pz-ink-secondary: #000000;
  --pz-muted: #64748b;
  --pz-body: #1e293b;
  --pz-faint: #94a3b8;
  --pz-line: #e2e8f0;
  --pz-line-soft: #f1f5f9;
  --pz-surface: #f8fafc;
  --pz-surface-2: #f1f5f9;

  /* Brand — white base; blue actions; green success; gold premium property */
  --pz-blue: #1e3a8a;
  --pz-blue-hover: #1e40af;
  --pz-blue-accessible: #1a44c8; /* lifted from --pz-blue for AA contrast on small/thin text */
  --pz-blue-soft: #dbeafe;
  --pz-blue-mist: #eff6ff;
  --pz-blue-panel: linear-gradient(165deg, #eff6ff 0%, #dbeafe 48%, #f0f9ff 100%);
  --pz-green: #047857;
  --pz-green-bright: #10b981;
  --pz-green-soft: #ecfdf5;
  --pz-green-panel: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 55%, #f0fdf4 100%);
  --pz-gold: #b45309;
  --pz-gold-deep: #92400e;
  --pz-gold-soft: #fffbeb;
  --pz-gold-panel: linear-gradient(165deg, #fffbeb 0%, #fef3c7 45%, #fff7ed 100%);
  --pz-gold-line: #fcd34d;
  --pz-navy: #0f172a;
  --pz-danger: #dc2626;
  --pz-danger-soft: #fef2f2;

  /* Type */
  --pz-font: "Inter", system-ui, -apple-system, sans-serif;
  --pz-font-display: "Instrument Sans", "Inter", system-ui, sans-serif;

  /* Radius */
  --pz-radius-sm: 8px;
  --pz-radius: 12px;
  --pz-radius-lg: 16px;
  --pz-radius-xl: 24px;
  --pz-radius-stack: 28px;

  /* Shadows — soft, no heavy borders */
  --pz-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --pz-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --pz-shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.1);
  --pz-shadow-lg: 0 24px 48px -16px rgba(15, 23, 42, 0.14);
  --pz-shadow-stack: 0 -16px 48px rgba(15, 23, 42, 0.08);

  /* Motion */
  --pz-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pz-duration: 220ms;

  --pz-nav-h: 72px;
  --pz-container: 1120px;

  /* Typography scale — used across dashboard and components */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.8125rem; /* 13px */
  --text-base: 0.9375rem; /* 15px */
  --text-md:   1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.375rem;  /* 22px */

  /* Font-weight aliases */
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
}

/* ─── Light page base ───────────────────────────────────────── */
.pz-ds-light {
  font-family: var(--pz-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pz-ink-secondary);
  background: var(--pz-white);
  -webkit-font-smoothing: antialiased;
}

.pz-ds-light h1,
.pz-ds-light h2,
.pz-ds-light h3,
.pz-ds-light .pz-display {
  font-family: var(--pz-font-display);
  color: var(--pz-ink);
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-weight: 800;
}

.pz-ds-light h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.05em;
}

.pz-ds-light h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.pz-ds-light h3 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.pz-ds-light .pz-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--pz-body, #1e293b);
  max-width: 40rem;
  font-weight: 500;
}

.pz-ds-light .pz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--pz-1);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pz-blue);
}

.pz-ds-light .pz-text-blue {
  color: var(--pz-blue);
}

.pz-ds-light .pz-text-gold {
  color: var(--pz-gold);
}

.pz-ds-light .pz-text-green {
  color: var(--pz-green);
}

/* Container */
.pz-container {
  width: 100%;
  max-width: var(--pz-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pz-3);
  padding-right: var(--pz-3);
}

@media (min-width: 768px) {
  .pz-container {
    padding-left: var(--pz-4);
    padding-right: var(--pz-4);
  }
}

/* ─── Buttons ───────────────────────────────────────────────── */
.pz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pz-2);
  padding: 16px 32px;
  font-family: var(--pz-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--pz-duration) var(--pz-ease),
    color var(--pz-duration) var(--pz-ease),
    box-shadow var(--pz-duration) var(--pz-ease),
    transform var(--pz-duration) var(--pz-ease);
}

.pz-btn:active {
  transform: scale(0.98);
}

.pz-btn--primary {
  background: var(--pz-blue);
  color: var(--pz-white);
  box-shadow: var(--pz-shadow-sm);
}

.pz-btn--primary:hover {
  background: var(--pz-blue-hover);
  box-shadow: var(--pz-shadow-md);
}

.pz-btn--secondary {
  background: var(--pz-white);
  color: var(--pz-ink);
  box-shadow: var(--pz-shadow-xs);
  border: 1px solid var(--pz-line);
}

.pz-btn--secondary:hover {
  background: var(--pz-surface);
  border-color: #cbd5e1;
}

.pz-btn--ghost {
  background: transparent;
  color: var(--pz-muted);
  padding: 12px 24px;
}

.pz-btn--ghost:hover {
  color: var(--pz-ink);
  background: var(--pz-surface);
}

.pz-btn--dark {
  background: var(--pz-navy);
  color: var(--pz-white);
}

.pz-btn--dark:hover {
  background: #1e293b;
}

.pz-btn--lg {
  padding: 20px 40px;
  font-size: 1.125rem;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.pz-card {
  background: var(--pz-white);
  border-radius: var(--pz-radius-lg);
  box-shadow: var(--pz-shadow-sm);
  padding: var(--pz-4);
  transition: box-shadow var(--pz-duration) var(--pz-ease),
    transform var(--pz-duration) var(--pz-ease);
}

.pz-card:hover {
  box-shadow: var(--pz-shadow-md);
}

.pz-card--flat {
  box-shadow: none;
  border: 1px solid var(--pz-line-soft);
}

/* ─── Form fields ───────────────────────────────────────────── */
.pz-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--pz-font);
  font-size: 1rem;
  color: var(--pz-ink);
  background: var(--pz-white);
  border: 1px solid var(--pz-line);
  border-radius: var(--pz-radius);
  outline: none;
  transition: border-color var(--pz-duration), box-shadow var(--pz-duration);
}

.pz-input:focus {
  border-color: var(--pz-blue);
  box-shadow: 0 0 0 3px var(--pz-blue-soft);
}

.pz-input::placeholder {
  color: var(--pz-faint);
}

/* ─── Badges ────────────────────────────────────────────────── */
.pz-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
}

.pz-badge--green {
  background: var(--pz-green-soft);
  color: var(--pz-green);
}

.pz-badge--blue {
  background: var(--pz-blue-soft);
  color: var(--pz-blue);
}

.pz-badge--gold {
  background: var(--pz-gold-soft);
  color: var(--pz-gold);
}

/* ─── Nav (marketing) ───────────────────────────────────────── */
.pz-ds-light .pz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--pz-nav-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--pz-duration), box-shadow var(--pz-duration);
}

.pz-ds-light .pz-nav.is-scrolled {
  border-bottom-color: var(--pz-line-soft);
  box-shadow: var(--pz-shadow-xs);
}

.pz-ds-light .pz-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pz-ds-light .pz-nav__links {
  display: none;
  align-items: center;
  gap: var(--pz-4);
}

@media (min-width: 1024px) {
  .pz-ds-light .pz-nav__links {
    display: none;
  }
}

.pz-ds-light .pz-nav__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pz-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color var(--pz-duration), background-color 0.15s ease;
}

.pz-ds-light .pz-nav__link:active {
  background-color: var(--pz-blue-soft);
  color: var(--pz-blue);
}

.pz-ds-light .pz-nav__link:hover {
  color: var(--pz-ink);
}

.pz-ds-light .pz-nav__actions {
  display: none;
  align-items: center;
  gap: var(--pz-1);
}

@media (min-width: 1024px) {
  .pz-ds-light .pz-nav__actions {
    display: none;
  }
}

.pz-ds-light .pz-nav__menu-btn {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pz-line);
  border-radius: 999px;
  background: var(--pz-white);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .pz-ds-light .pz-nav__menu-btn {
    display: flex;
  }
}

.pz-ds-light .pz-nav__mobile {
  padding: var(--pz-3);
  border-top: 1px solid var(--pz-line-soft);
  overflow-y: auto;
  max-height: calc(100vh - 116px);
  background: var(--pz-white);
}

#mobileMenu.pz-nav__mobile {
  position: fixed;
  top: 116px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 99;
}

@media (min-width: 1024px) {
  #mobileMenu.pz-nav__mobile {
    left: auto;
    right: 0;
    width: 380px;
    box-shadow: -8px 0 40px rgba(15,23,42,0.12);
    padding: 32px 40px;
  }
}

.pz-ds-light .pz-nav__mobile[hidden] {
  display: none !important;
}

/* Footer light */
.pz-ds-light .pz-footer {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-top: none !important;
}

.pz-ds-light .pz-footer a {
  color: rgba(255,255,255,0.90) !important;
  font-weight: 500;
  transition: color 0.15s ease;
}

.pz-ds-light .pz-footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pz-ds-light .pz-footer h4 {
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem !important;
}

.pz-ds-light .pz-footer p {
  color: rgba(255,255,255,0.88) !important;
}

.pz-ds-light .pz-footer .pz-social {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.40) !important;
  color: #ffffff !important;
  transition: background 0.15s ease, border-color 0.15s ease !important;
}

.pz-ds-light .pz-footer .pz-social:hover {
  background: rgba(255,255,255,0.28) !important;
  border-color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
}

/* ─── App shell (dashboard) ─────────────────────────────────── */
.pz-ds-app {
  font-family: var(--pz-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pz-ink-secondary);
  background: var(--pz-surface);
  -webkit-font-smoothing: antialiased;
}

.pz-ds-app h1,
.pz-ds-app h2,
.pz-ds-app h3,
.pz-ds-app .title {
  font-family: var(--pz-font-display);
  color: var(--pz-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 800;
}

.pz-trust-strip {
  display: flex;
  align-items: center;
  gap: var(--pz-1);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pz-muted);
}

.pz-trust-strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pz-green-bright);
  box-shadow: 0 0 0 3px var(--pz-green-soft);
}

.pz-ds-app .pz-panel {
  background: var(--pz-white);
  border-radius: 16px;
  border: 1px solid var(--pz-line-soft);
  padding: 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
}

.pz-ds-app .pz-panel--hero {
  background: linear-gradient(135deg, var(--pz-blue) 0%, var(--pz-blue-hover) 100%);
  border: 1px solid rgba(30, 58, 138, 0.3);
  color: white;
  position: relative;
  overflow: hidden;
}

.pz-ds-app .pz-panel--hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pz-ds-app .pz-panel--hero .pz-stat__label {
  color: rgba(255, 255, 255, 0.8);
}

.pz-ds-app .pz-panel--hero .title {
  color: white;
}

.pz-ds-app .pz-panel--hero p[style*="color:rgba(255,255,255,0.8)"] {
  color: rgba(255, 255, 255, 0.8) !important;
}

.pz-ds-app .pz-panel--accent {
  background: var(--pz-blue-panel);
  border: 1px solid var(--pz-blue-soft);
}

.pz-stat {
  background: var(--pz-white);
  border-radius: 16px;
  border: 1px solid var(--pz-line-soft);
  padding: 14px 10px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow var(--pz-duration) var(--pz-ease),
    border-color var(--pz-duration) var(--pz-ease);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
}

.pz-stat--clickable {
  cursor: pointer;
}

.pz-stat--clickable:hover {
  border-color: var(--pz-blue);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.pz-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pz-muted);
  margin-bottom: 8px;
}

.pz-stat__value {
  font-family: var(--pz-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pz-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pz-stat__value--green {
  color: var(--pz-blue);
}

.pz-stat__value--gold {
  color: var(--pz-ink);
}

.pz-stat__value--blue {
  color: var(--pz-blue);
}

.pz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pz-2);
  margin-bottom: var(--pz-2);
}

.pz-section-head h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--pz-ink);
}

.pz-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pz-blue);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.pz-link:hover {
  color: var(--pz-blue-hover);
}

.pz-deal-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--pz-line-soft);
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.pz-deal-card:last-child {
  border-bottom: none;
}
.pz-deal-card:hover {
  opacity: 0.72;
}
.pz-deal-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  background: var(--pz-blue-mist);
  color: var(--pz-blue);
}

.pz-deal-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.pz-deal-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pz-deal-card__title {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pz-ink);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.pz-deal-card__meta {
  flex: 1;
  min-width: 0;
  font-size: 0.7rem;
  color: var(--pz-muted);
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pz-deal-card__row-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pz-deal-card__sublabel {
  font-size: 9px;
  font-weight: 400;
  color: var(--pz-muted);
  white-space: nowrap;
}

.pz-deal-card__amount {
  font-family: var(--pz-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pz-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--pz-white);
  border-radius: 16px;
  border: 1px solid var(--pz-line-soft);
}

.pz-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 138, 0.1);
  color: var(--pz-blue);
  font-size: 1.25rem;
}

.pz-settings-row {
  display: flex;
  align-items: center;
  gap: var(--pz-2);
  width: 100%;
  padding: var(--pz-2) 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--pz-card-border);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background var(--pz-duration);
}

.pz-settings-row:last-child {
  border-bottom: none;
}

.pz-settings-row:hover {
  opacity: 0.85;
}

.pz-settings-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--pz-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY — contrast + touch target fixes
   ══════════════════════════════════════════════════════════ */

/* --- Contrast: lift muted text to pass AA (4.5:1 on white) --- */
.pz-ds-light .pz-muted,
.pz-ds-light p.pz-muted,
.pz-ds-light .pz-lead,
.pz-ds-light .pz-stat__label { color: #475569; }   /* was #64748b — now passes AA */

.pz-ds-light .pz-eyebrow { color: var(--pz-blue-accessible); }        /* was #1e3a8a; slight lift for smaller text */

.pz-ds-light .pz-faint,
.pz-ds-light [class*="pz-faint"] { color: #64748b; } /* was #94a3b8 */

/* Inputs: placeholder contrast fix */
.pz-ds-light input::placeholder,
.pz-ds-light textarea::placeholder { color: #64748b; }

/* Links in body copy */
.pz-ds-light a:not([class]) { color: var(--pz-blue-accessible); }
.pz-ds-light a:not([class]):hover { color: #1e3a8a; }

/* --- Touch targets: ensure interactive elements are ≥ 44×44px --- */
.pz-btn {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pz-btn--sm  { min-height: 36px; }   /* explicit small variant keeps its size */
.pz-btn--lg  { min-height: 52px; }

/* Nav links */
.pz-nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* FAQ summary rows */
.pz-faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Audience / showcase CTAs */
.pz-audience-card__cta,
.pz-showcase-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Social icon targets in footer */
.pz-social {
  width: 44px !important;
  height: 44px !important;
}

/* Checkbox / radio inside forms */
input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Blog carousel arrows */
.pz-blog-carousel__arrow {
  min-width: 44px;
  min-height: 44px;
}

/* ─── Tailwind reconciliation ───────────────────────────────────
   Tailwind's text-gray-* and text-slate-* classes produce slightly
   different values than --pz-muted. These overrides keep them in sync
   so there is no colour drift between Tailwind utility classes and
   the design system. Remove these once Tailwind classes are fully
   replaced with pz-text-muted / pz-text-ink etc.
   ──────────────────────────────────────────────────────────────── */
.text-gray-400,
.text-gray-500,
.text-slate-400,
.text-slate-500 {
  color: var(--pz-muted) !important;
}

.text-gray-600,
.text-slate-600 {
  color: var(--pz-ink-secondary) !important;
}

.text-gray-700,
.text-gray-800,
.text-gray-900,
.text-slate-700,
.text-slate-800,
.text-slate-900 {
  color: var(--pz-ink) !important;
}
/* ── Transaction detail modal rows ── */
.tx-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid var(--pz-line-soft);
}
.tx-detail-row:last-child {
  border-bottom: none;
}
.tx-detail-row--col {
  flex-direction: column;
  align-items: flex-start;
}
.tx-detail-label {
  font-size: 0.8125rem;
  color: var(--pz-muted);
  font-weight: 500;
  flex-shrink: 0;
}