/* ============================================================
   Ace App — Reports redesign
   Lifted from /tmp/ace-design-handoff/design_handoff_reports/report-styles.css
   All tokens come from existing index.css / components.css.
   ============================================================ */

.rp{
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ace-text);
  background: var(--ace-surface-alt);
  min-height: 100%;
}
.rp *{ box-sizing:border-box; }

/* ---- Page header band (navy hero strip) ---- */
.rp-band{
  background: linear-gradient(180deg, var(--ace-navy) 0%, #012e47 100%);
  color:#fff;
  padding: 20px 28px 56px;
  position:relative;
  overflow:hidden;
}
.rp-band::after{
  content:""; position:absolute; right:-40px; bottom:-60px;
  width: 320px; height: 320px; border-radius:50%;
  background: radial-gradient(circle, rgba(90,200,242,0.18), transparent 60%);
  pointer-events:none;
}
.rp-crumbs{
  font-size: 11px; letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 700;
  display:flex; align-items:center; gap:8px;
}
.rp-crumbs .sep{ opacity:.4; }
.rp-crumbs a{ color: inherit; text-decoration: none; }
.rp-crumbs a:hover{ color: rgba(255,255,255,0.85); text-decoration: underline; }
.rp-title-row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-top: 6px;
}
.rp-title{ font-size: 26px; font-weight: 900; letter-spacing:-.3px; line-height:1.15; }
.rp-sub{ font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; max-width: 720px; }
.rp-actions{ display:flex; align-items:center; gap:8px; position:relative; z-index:1; }

.rp-period{
  display:inline-flex; background: rgba(255,255,255,0.08); border-radius: 10px; padding:3px;
  border:1px solid rgba(255,255,255,0.08);
}
.rp-period button{
  font-size:11px; font-weight:800; letter-spacing:.4px; text-transform:uppercase;
  padding: 6px 12px; border-radius: 7px; border:0; background:transparent; color:#cbd9e2; cursor:pointer;
  font-family:inherit;
}
.rp-period button.is-active{ background: var(--ace-blue); color:#fff; }

.rp-iconbtn{
  width:34px; height:34px; border-radius:8px; border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color:#cbd9e2; display:grid; place-items:center; cursor:pointer;
}
.rp-iconbtn:hover{ background: rgba(255,255,255,0.12); color:#fff; }

/* ---- Content area pulls up over band ---- */
.rp-content{
  padding: 0 28px 40px;
  margin-top: -36px;
  position:relative; z-index:1;
}

/* ---- Filter bar (horizontal chips) ---- */
.rp-filter{
  background:#fff; border-radius: 14px;
  box-shadow: 0 4px 16px rgba(2,60,91,0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
  border: 1px solid rgba(2,60,91,0.06);
  padding: 10px 12px;
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom: 16px;
}
.rp-flabel{
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ace-text-muted); padding-right: 4px;
}
.rp-chip{
  font-size: 12px; font-weight: 700; letter-spacing:.2px;
  padding: 6px 12px; border-radius: 999px; cursor: pointer;
  background: var(--ace-surface-hover); color: var(--ace-text-secondary);
  border: 1px solid transparent;
  display:inline-flex; align-items:center; gap:6px;
  font-family:inherit;
}
.rp-chip:hover{ background: var(--ace-ice); color: var(--ace-navy); }
.rp-chip.is-active{ background: var(--ace-navy); color:#fff; }
.rp-chip.tone-blue.is-active{ background: var(--ace-blue); color:#fff; }
.rp-chip.tone-warn{ background: var(--ace-peach); color:#7a4715; }
.rp-chip.tone-warn.is-active{ background: var(--ace-warning); color:#3f2406; }
.rp-chip-count{
  font-size:10px; font-weight: 800; padding: 1px 6px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
.rp-chip:not(.is-active) .rp-chip-count{ background: rgba(2,60,91,0.08); color: var(--ace-text-secondary); }
.rp-divider{ width: 1px; height: 22px; background: var(--ace-border); }
.rp-search{
  flex:1; min-width: 220px;
  display:flex; align-items:center; gap:8px;
  padding: 6px 12px; background: var(--ace-surface-hover); border-radius: 8px;
  color: var(--ace-text-muted);
}
.rp-search input{
  flex:1; background:transparent; border:0; outline:0; font-size: 13px; color: var(--ace-text); font-family:inherit;
}
.rp-search kbd{
  font-family:'SF Mono', monospace; font-size: 10px; color: var(--ace-text-muted);
  background:#fff; padding: 1px 6px; border-radius: 4px; border:1px solid var(--ace-border);
}

/* ---- Section card ---- */
.rp-card{
  background:#fff; border-radius: 14px;
  border: 1px solid rgba(2,60,91,0.06);
  box-shadow: 0 4px 16px rgba(2,60,91,0.06);
  margin-bottom: 16px;
  overflow:hidden;
}
.rp-card-head{
  padding: 14px 18px;
  border-bottom: 1px solid var(--ace-border);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.rp-card-h{
  font-size: 14px; font-weight: 800; color: var(--ace-navy); letter-spacing:-.1px;
  display:flex; align-items:center; gap:10px;
}
.rp-card-h .num{
  font-size:11px; font-weight:800; letter-spacing:.4px;
  background: var(--ace-ice); color: var(--ace-navy);
  padding: 2px 8px; border-radius: 999px;
}
.rp-card-meta{ font-size: 11px; color: var(--ace-text-muted); font-weight:600; }
.rp-card-body{ padding: 16px 18px; }
.rp-card-body.flush{ padding: 0; }

/* ---- KPI tiles ---- */
.rp-kpi-row{ display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 12px; margin-bottom: 16px; }
.rp-kpi{
  background:#fff; border-radius: 14px; padding: 16px 18px;
  border:1px solid rgba(2,60,91,0.06); box-shadow: 0 4px 16px rgba(2,60,91,0.06);
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; gap:8px;
}
.rp-kpi-label{
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ace-text-muted);
  display:flex; align-items:center; justify-content:space-between; gap:8px;
}
.rp-kpi-val{
  font-size: 28px; font-weight: 900; color: var(--ace-navy);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.rp-kpi-foot{
  display:flex; align-items:center; gap:8px; font-size: 11px; color: var(--ace-text-secondary);
}
.rp-kpi.is-hero{ background: linear-gradient(135deg, var(--ace-navy), #034b73); color:#fff; }
.rp-kpi.is-hero .rp-kpi-label{ color: rgba(255,255,255,0.65); }
.rp-kpi.is-hero .rp-kpi-val{ color:#fff; }
.rp-kpi.is-hero .rp-kpi-foot{ color: rgba(255,255,255,0.7); }
.rp-kpi-strip{
  position:absolute; left:0; top:0; bottom:0; width:4px; border-radius: 14px 0 0 14px;
}
.rp-kpi.tone-good .rp-kpi-strip{ background: var(--ace-positive); }
.rp-kpi.tone-warn .rp-kpi-strip{ background: var(--ace-warning); }
.rp-kpi.tone-crit .rp-kpi-strip{ background: var(--ace-negative); }
.rp-kpi.tone-info .rp-kpi-strip{ background: var(--ace-blue); }

.rp-spk{ display:inline-block; vertical-align: middle; }
.rp-kpi .rp-spk{ position:absolute; right: 12px; bottom: 10px; opacity: .6; }

/* delta chip */
.rp-delta{
  display:inline-flex; align-items:center; gap:3px;
  font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.rp-delta.up{ background: var(--ace-mint); color:#3a6e1c; }
.rp-delta.dn{ background: var(--ace-pink); color: var(--ace-critical); }
.rp-delta.flat{ background: var(--ace-light-gray); color: var(--ace-text-secondary); }
.rp-delta.up-light{ color:#3a8a25; background: transparent; padding:0; }
.rp-delta.dn-light{ color: var(--ace-critical); background: transparent; padding:0; }
.rp-delta.flat-light{ color: var(--ace-text-secondary); background: transparent; padding:0; }

/* ---- Table primitives ---- */
.rp-tw{ overflow:auto; }
.rp-tbl{ width:100%; border-collapse: collapse; font-size: 13px; }
.rp-tbl thead th{
  position: sticky; top:0; z-index: 1;
  background: linear-gradient(180deg, #f9fbfd, #eef3f8);
  color: var(--ace-text-secondary);
  text-align:left;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 11px 14px;
  border-bottom: 1px solid var(--ace-border);
}
.rp-tbl thead th.r{ text-align:right; }
.rp-tbl thead th.c{ text-align:center; }
.rp-tbl thead th.sortable{ cursor:pointer; user-select:none; }
.rp-tbl thead th.sortable:hover{ color: var(--ace-navy); }
.rp-tbl thead th.is-sorted{ color: var(--ace-navy); }
.rp-tbl tbody td{
  padding: 11px 14px; border-bottom: 1px solid var(--ace-border-soft); color: var(--ace-text);
  font-variant-numeric: tabular-nums;
}
.rp-tbl tbody td.r{ text-align:right; }
.rp-tbl tbody td.c{ text-align:center; }
.rp-tbl tbody tr:hover{ background: var(--ace-surface-alt); }
.rp-tbl tbody tr.is-clickable{ cursor: pointer; }
.rp-tbl tbody tr.is-tot{ background: #f7faff; }
.rp-tbl tbody tr.is-tot td{ font-weight: 800; color: var(--ace-navy); border-top: 1px solid var(--ace-border); border-bottom: 0; }
.rp-tbl tbody tr.is-tot td:first-child{ letter-spacing:.4px; text-transform: uppercase; font-size: 11px; }
.rp-tbl .rk{ font-size: 11px; color: var(--ace-text-muted); font-weight: 700; }
.rp-tbl .nm{ font-weight: 700; color: var(--ace-text); }
.rp-tbl .sub{ font-size: 11px; color: var(--ace-text-muted); margin-top: 1px; }

.rp-row-flex{ display:flex; align-items:center; gap:10px; }

.rp-av{
  width: 28px; height:28px; border-radius:50%; flex-shrink:0;
  background: var(--ace-ice); color: var(--ace-navy); font-weight: 800; font-size: 11px;
  display:grid; place-items:center;
}
.rp-av.warm{ background: var(--ace-peach); color: #7a4715; }
.rp-av.mint{ background: var(--ace-mint); color: #3a6e1c; }
.rp-av.pink{ background: var(--ace-pink); color: var(--ace-critical); }
.rp-av.navy{ background: var(--ace-navy); color: #fff; }

/* inline mini bar */
.rp-mb{
  width: 80px; height: 6px; background: var(--ace-surface-hover); border-radius: 999px; overflow:hidden;
  display:inline-block; vertical-align: middle;
}
.rp-mb > span{ display:block; height:100%; border-radius: 999px; }
.rp-mb.thin{ height: 4px; }
.rp-mb.tall{ height: 10px; }

/* status pill */
.rp-pill{
  font-size: 10px; font-weight: 800; letter-spacing:.6px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  display:inline-flex; align-items:center; gap:4px;
}
.rp-pill.good{ background: var(--ace-mint); color: #3a6e1c; }
.rp-pill.warn{ background: var(--ace-peach); color: #7a4715; }
.rp-pill.crit{ background: var(--ace-pink); color: var(--ace-critical); }
.rp-pill.info{ background: var(--ace-ice); color: var(--ace-navy); }
.rp-pill.neutral{ background: var(--ace-light-gray); color: var(--ace-text-secondary); }
.rp-pill .dot{ width:5px; height:5px; border-radius:50%; background: currentColor; }

/* heatmap cell */
.rp-hc{
  display:inline-block; padding: 3px 8px; border-radius: 6px;
  font-weight: 700; font-variant-numeric: tabular-nums;
}
.rp-hc.h0{ background: transparent; color: var(--ace-text-muted); }
.rp-hc.h1{ background: rgba(163,217,113,0.15); color: #3a8a25; }
.rp-hc.h2{ background: rgba(163,217,113,0.3); color: #2d6e1c; }
.rp-hc.h3{ background: rgba(163,217,113,0.5); color: #234712; }
.rp-hc.hn1{ background: rgba(255,113,130,0.12); color: var(--ace-critical); }
.rp-hc.hn2{ background: rgba(255,113,130,0.25); color: var(--ace-critical); }

/* small svg utility */
.rp svg{ flex-shrink:0; }

/* Generic container rows */
.rp-2col{ display:grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.rp-2col-eq{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rp-3col{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Channel swatch */
.rp-ch{
  display:inline-flex; align-items:center; gap:6px;
  font-size: 11px; font-weight: 700; color: var(--ace-text-secondary);
}
.rp-ch .sw{ width: 8px; height: 8px; border-radius: 2px; display:inline-block; }
.rp-ch .sw.lcbo{ background: var(--ace-channel-lcbo); }
.rp-ch .sw.groc{ background: var(--ace-channel-grocery); }
.rp-ch .sw.conv{ background: var(--ace-channel-conv); }
.rp-ch .sw.agcy{ background: var(--ace-channel-agency); }
.rp-ch .sw.kdp{ background: #C41230; }

/* Podium */
.rp-podium{
  display:grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 12px; align-items:end;
  margin-bottom: 16px;
}
.rp-stand{
  position:relative; padding: 16px 16px 18px; border-radius: 14px;
  box-shadow: 0 4px 16px rgba(2,60,91,0.08);
  border:1px solid rgba(2,60,91,0.06); background:#fff;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  text-align:center;
}
.rp-stand.gold{ background: linear-gradient(180deg,#fff7e0,#fff); border-color:#f3d796; }
.rp-stand.silver{ background: linear-gradient(180deg,#f3f5f8,#fff); border-color:#d8dee6; }
.rp-stand.bronze{ background: linear-gradient(180deg,#fceadf,#fff); border-color:#e8c4a4; }
.rp-stand .medal{
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  font-size: 18px; font-weight: 900; color:#fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.rp-stand.gold .medal{ background: linear-gradient(135deg,#f6c544,#d8a127); }
.rp-stand.silver .medal{ background: linear-gradient(135deg,#cbd0d6,#9aa4af); }
.rp-stand.bronze .medal{ background: linear-gradient(135deg,#d39062,#a8693a); }
.rp-stand .nm{ font-size: 16px; font-weight: 900; color: var(--ace-navy); }
.rp-stand .role{ font-size: 11px; color: var(--ace-text-muted); letter-spacing:.4px; text-transform: uppercase; font-weight: 700; }
.rp-stand .stat{ font-size: 22px; font-weight: 900; color: var(--ace-navy); font-variant-numeric: tabular-nums; margin-top: 4px; }
.rp-stand .lbl{ font-size: 10px; color: var(--ace-text-muted); letter-spacing:.6px; text-transform: uppercase; font-weight: 800; }
.rp-stand.gold{ transform: translateY(-12px); }

/* Total Listings strip (Leaderboard) */
.rp-tl-strip{
  display:grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 24px; align-items:center;
  background:#fff; border-radius: 14px; padding: 18px 22px;
  border:1px solid rgba(2,60,91,0.06); box-shadow: 0 4px 16px rgba(2,60,91,0.06);
  margin-bottom: 16px;
}
.rp-tl-num{ font-size: 36px; font-weight: 900; color: var(--ace-navy); font-variant-numeric: tabular-nums; line-height: 1; }
.rp-tl-lbl{ font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--ace-text-muted); margin-top: 6px; }
.rp-tl-delta{ display:flex; flex-direction:column; gap:6px; }
.rp-tl-delta-num{ font-size: 24px; font-weight: 900; font-variant-numeric: tabular-nums; line-height: 1; color: #3a8a25; }
.rp-tl-delta-num.dn{ color: var(--ace-critical); }
.rp-tl-channels{ display:flex; flex-direction:column; gap:6px; }
.rp-tl-channel{ display:grid; grid-template-columns: 90px 1fr 50px; gap:10px; align-items:center; font-size:12px; }
.rp-tl-channel .lbl{ display:flex; align-items:center; gap:6px; font-weight:700; color: var(--ace-text-secondary); }
.rp-tl-channel .lbl .sw{ width:8px; height:8px; border-radius:2px; display:inline-block; }
.rp-tl-channel .v{ text-align:right; font-weight:800; color: var(--ace-navy); font-variant-numeric: tabular-nums; }

/* Stand-alone pills */
.rp-prio{
  display:inline-flex; align-items:center; gap: 6px;
  font-weight: 800; font-size: 11px; padding: 3px 8px; border-radius: 6px;
}
.rp-prio.high{ background: var(--ace-pink); color: var(--ace-critical); }
.rp-prio.med{ background: var(--ace-peach); color: #7a4715; }
.rp-prio.low{ background: var(--ace-light-gray); color: var(--ace-text-secondary); }

.rp-tbl tbody tr.has-flag td:first-child{ box-shadow: inset 3px 0 0 var(--ace-warning); }
.rp-tbl tbody tr.is-watch td:first-child{ box-shadow: inset 3px 0 0 var(--ace-negative); }
.rp-tbl tbody tr.has-flag{ background: rgba(255,113,130,0.04); }

/* Lapsed banner (Accounts view) */
.rp-lapsed-banner{
  display:flex; align-items:center; gap:14px;
  background: rgba(255,223,227,0.45);
  border: 1px solid #f7c2c8;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.rp-lapsed-banner .icon{
  width:32px; height:32px; border-radius:50%; flex-shrink:0;
  background: var(--ace-pink); color: var(--ace-critical);
  display:grid; place-items:center; font-weight:800;
}
.rp-lapsed-banner .text{ flex:1; font-size:13px; color: var(--ace-text); }
.rp-lapsed-banner .text strong{ color: var(--ace-critical); font-weight:800; }
.rp-lapsed-banner button{
  font-size:12px; font-weight:700; padding:6px 14px; border-radius:8px;
  border:1px solid var(--ace-critical); background: var(--ace-critical); color:#fff; cursor:pointer;
  font-family: inherit;
}
.rp-lapsed-banner button:hover{ filter: brightness(1.05); }
.rp-lapsed-banner .dismiss{
  width:24px; height:24px; border-radius:6px; background:transparent; color: var(--ace-text-muted);
  border:0; cursor:pointer; display:grid; place-items:center; font-size:16px;
}

/* Segmented toggle (Accounts/Pipeline switcher in OnPremise) */
.rp-segmented{
  display:inline-flex; background:rgba(255,255,255,0.08); border-radius:10px; padding:3px;
  border:1px solid rgba(255,255,255,0.08);
}
.rp-segmented button{
  font-size:11px; font-weight:800; letter-spacing:.4px; text-transform:uppercase;
  padding:6px 14px; border-radius:7px; border:0; background:transparent; color:#cbd9e2; cursor:pointer;
  font-family:inherit;
}
.rp-segmented button.is-active{ background: var(--ace-blue); color:#fff; }

/* Index landing card grid */
.rp-index-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:16px;
  margin-bottom: 24px;
}
.rp-index-card{
  background:#fff; border-radius: 14px; padding: 22px 22px 20px;
  border:1px solid rgba(2,60,91,0.06); box-shadow: 0 4px 16px rgba(2,60,91,0.06);
  display:flex; flex-direction:column; gap:8px;
  text-decoration: none; color:inherit;
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}
.rp-index-card:hover{ transform: translateY(-2px); box-shadow: 0 8px 22px rgba(2,60,91,0.12); }
.rp-index-card .icon{
  width:40px; height:40px; border-radius:10px;
  background: var(--ace-ice); color: var(--ace-navy);
  display:grid; place-items:center; margin-bottom: 4px;
}
.rp-index-card .ttl{ font-size: 16px; font-weight: 900; color: var(--ace-navy); letter-spacing:-.2px; }
.rp-index-card .desc{ font-size: 12px; color: var(--ace-text-secondary); line-height: 1.5; }
.rp-index-card .more{
  margin-top: 8px; font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--ace-blue); display:flex; align-items:center; gap:4px;
}

/* Empty state */
.rp-empty{
  text-align:center; padding: 48px 20px; color: var(--ace-text-secondary); font-size: 14px;
}

/* Loading skeleton */
@keyframes rp-pulse{ 0%,100%{opacity:1} 50%{opacity:.5} }
.rp-skeleton{
  background: var(--ace-surface-hover); border-radius: 8px;
  animation: rp-pulse 1.5s ease-in-out infinite;
}

/* Deviation bar (Territory Comparison) */
.rp-dev-row{
  display:grid; grid-template-columns: 90px 1fr 1fr 70px; gap: 8px; align-items:center;
  padding: 8px 4px; border-bottom: 1px solid var(--ace-border-soft);
}
.rp-dev-row:last-child{ border-bottom: 0; }
.rp-dev-half-l{
  height:18px; background: var(--ace-surface-hover); border-radius: 6px 0 0 6px;
  position:relative; display:flex; justify-content:flex-end; overflow:hidden;
}
.rp-dev-half-r{
  height:18px; background: var(--ace-surface-hover); border-radius: 0 6px 6px 0;
  position:relative; overflow:hidden;
}
.rp-dev-half-l > span, .rp-dev-half-r > span{ display:block; height:100%; }
.rp-dev-half-l > span{ background: var(--ace-negative); }
.rp-dev-half-r > span{ background: var(--ace-positive); }
.rp-dev-val{ text-align:right; font-size:13px; font-weight:800; font-variant-numeric: tabular-nums; }
.rp-dev-val.up{ color:#3a8a25; }
.rp-dev-val.dn{ color: var(--ace-critical); }

/* Two-col band (Stores Watchlist + Top contributors) */
.rp-watch-row{
  display:grid; grid-template-columns: auto 1fr auto auto; gap:10px; align-items:center;
  padding: 12px 16px; border-bottom: 1px solid var(--ace-border-soft);
}
.rp-watch-row:last-child{ border-bottom: 0; }

/* Mobile responsive */
@media(max-width: 900px){
  .rp-2col, .rp-2col-eq{ grid-template-columns: 1fr; }
  .rp-3col{ grid-template-columns: 1fr 1fr; }
  .rp-tl-strip{ grid-template-columns: 1fr; gap:14px; }
  .rp-podium{ grid-template-columns: 1fr; }
  .rp-stand.gold{ transform: none; }
}
@media(max-width: 640px){
  .rp-content{ padding: 0 16px 32px; margin-top: -28px; }
  .rp-band{ padding: 16px 16px 44px; }
  .rp-title{ font-size: 22px; }
  .rp-title-row{ flex-direction: column; align-items: flex-start; }
  .rp-actions{ width: 100%; flex-wrap: wrap; }
  .rp-filter{ padding: 8px 10px; }
  .rp-search{ min-width: 100%; }
  .rp-3col{ grid-template-columns: 1fr; }
  .rp-tl-num{ font-size: 28px; }
  .rp-kpi-val{ font-size: 22px; }
}
