/* ═══════════════════════════════════════════════════════
   SYNE — report.css  (Compliance Reporting platform page)
   Accent colour: teal  --teal:#0EA5E9  --teal-lt:#E0F2FE
═══════════════════════════════════════════════════════ */

/* ── Teal accent overrides for this page ── */
:root {
  --accent:       var(--teal);
  --accent-dark:  #0284C7;
  --accent-lt:    var(--teal-lt);
  --accent-mid:   rgba(14,165,233,.28);
}

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.rpt-hero {
  padding: 80px 0 72px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.rpt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 100% 50%, rgba(14,165,233,.07), transparent 55%),
    radial-gradient(ellipse 30% 55% at 0%   80%, rgba(14,165,233,.04), transparent 55%);
  pointer-events: none;
}
.rpt-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,165,233,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none;
}
.rpt-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.rpt-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-lt);
  border: 1px solid var(--accent-mid);
  border-radius: 20px;
  padding: 5px 13px;
  margin-bottom: 20px;
}
.rpt-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.rpt-hero-h1 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.rpt-hero-h1 strong { color: var(--accent); }
.rpt-hero-lead {
  font-size: 17px; line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 520px;
}
.rpt-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.rpt-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.rpt-hstat-val {
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -.025em; line-height: 1;
}
.rpt-hstat-val em { font-style: normal; color: var(--accent); font-size: 15px; }
.rpt-hstat-lbl { font-size: 11px; color: var(--ink-4); margin-top: 4px; font-weight: 500; line-height: 1.3; }

/* Report preview panel */
.rpt-preview-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(13,31,45,.08), 0 4px 16px rgba(14,165,233,.08);
}
.rpt-panel-bar {
  background: var(--bg-grey);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.rpt-panel-dot { width: 9px; height: 9px; border-radius: 50%; }
.rpt-panel-title { font-size: 11px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.rpt-panel-badge {
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.28);
  color: var(--accent-dark);
}
.rpt-panel-body { padding: 20px; }

/* ─────────────────────────────────────────────────────
   FRAMEWORK COVERAGE SECTION
───────────────────────────────────────────────────── */
.rpt-frameworks { padding: 96px 0; background: var(--bg-grey); }
.rpt-fw-hd { text-align: center; max-width: 680px; margin: 0 auto 48px; }

/* Filter pills */
.fw-filter-group {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 40px;
}
.fw-filter-pill {
  padding: 8px 20px; border-radius: 30px;
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-3);
  background: #fff;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font);
}
.fw-filter-pill:hover { border-color: var(--accent-mid); color: var(--accent); }
.fw-filter-pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(14,165,233,.30);
}

/* Framework cards grid */
.fw-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fw-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all .2s;
  cursor: default;
}
.fw-card:hover {
  border-color: rgba(14,165,233,.35);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.fw-card-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.fw-card-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
  border: 1px solid;
}
.fw-card-ico svg { width: 18px; height: 18px; stroke-width: 1.8; fill: none; }
.fw-card-name { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.fw-card-region { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.fw-card-desc { font-size: 12.5px; line-height: 1.65; color: var(--ink-3); margin-bottom: 12px; }
.fw-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.fw-tag {
  font-size: 10px; font-weight: 600;
  padding: 2px 9px; border-radius: 20px;
  border: 1px solid;
}

/* ─────────────────────────────────────────────────────
   REPORT TYPES  (tabbed)
───────────────────────────────────────────────────── */
.rpt-types { padding: 96px 0; background: #fff; }
.rpt-types-hd { max-width: 680px; margin: 0 auto 56px; text-align: center; }

.rpt-type-tabs-wrap { /* JS init target — contains tabs + panels */ }
.rpt-type-tabs {
  display: flex; gap: 0;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-grey);
  margin-bottom: 48px;
}
.rpt-type-tab {
  flex: 1; padding: 14px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
  cursor: pointer;
  transition: all .18s;
  border-right: 1px solid var(--line);
  background: transparent;
  border-top: none; border-bottom: none; border-left: none;
  font-family: var(--font);
  white-space: nowrap;
}
.rpt-type-tab:last-child { border-right: none; }
.rpt-type-tab:hover { background: #fff; color: var(--ink-2); }
.rpt-type-tab.active {
  background: #fff;
  color: var(--accent);
  box-shadow: inset 0 -3px 0 var(--accent);
}
.rpt-type-tab-ico {
  width: 26px; height: 26px; border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0;
}
.rpt-type-tab-ico svg { width: 12px; height: 12px; stroke-width: 2; fill: none; }

.rpt-type-panel { display: none; }
.rpt-type-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─────────────────────────────────────────────────────
   REPORT BUILDER — HOW IT WORKS
───────────────────────────────────────────────────── */
.rpt-how { padding: 96px 0; background: var(--bg-grey); border-top: 1px solid var(--line); }
.rpt-how-hd { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.rpt-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.rpt-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(10% + 16px); right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(14,165,233,.2) 100%);
  z-index: 0;
}
.rpt-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative; z-index: 1;
}
.rpt-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  flex-shrink: 0;
}
.rpt-step-num.done {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(14,165,233,.15);
}
.rpt-step-num.active {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(14,165,233,.12);
}
.rpt-step-num.pending {
  background: #fff;
  color: var(--ink-4);
  border: 2px solid var(--line);
}
.rpt-step-title { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.rpt-step-body { font-size: 11.5px; color: var(--ink-3); line-height: 1.55; }

/* ─────────────────────────────────────────────────────
   AI-POWERED REPORTING  (deep-dive rows)
───────────────────────────────────────────────────── */
.rpt-ai { padding: 96px 0; background: #fff; }
.rpt-ai-hd { max-width: 640px; margin-bottom: 64px; }

.rpt-ai-rows { display: flex; flex-direction: column; gap: 0; }
.rpt-ai-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.rpt-ai-row:last-child { border: none; }
.rpt-ai-row.rev .rpt-ai-visual { order: -1; }

.rpt-ai-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.rpt-ai-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 14px; line-height: 1.2;
}
.rpt-ai-body {
  font-size: 14.5px; line-height: 1.76;
  color: var(--ink-3); margin-bottom: 22px;
}
.rpt-ai-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 26px;
}
.rpt-ai-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.rpt-ai-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0; margin-top: 6px;
}

/* Visual panel inside ai rows */
.rpt-ai-visual {
  background: var(--bg-grey);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  display: flex; flex-direction: column;
}
.rpt-vis-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.rpt-vis-dot { width: 8px; height: 8px; border-radius: 50%; }
.rpt-vis-title { font-size: 10.5px; color: var(--ink-3); margin-left: 6px; flex: 1; }
.rpt-vis-body {
  padding: 18px;
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}

/* ─────────────────────────────────────────────────────
   REGULATORY TIMELINE
───────────────────────────────────────────────────── */
.rpt-timeline { padding: 96px 0; background: var(--bg-grey); border-top: 1px solid var(--line); }
.rpt-timeline-hd { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.rpt-tl-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.rpt-tl-year-group { margin-bottom: 32px; }
.rpt-tl-year-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-left: 28px;
}
.rpt-tl-items { display: flex; flex-direction: column; gap: 8px; }
.rpt-tl-item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all .18s;
}
.rpt-tl-item:hover { border-color: rgba(14,165,233,.3); box-shadow: var(--sh-sm); }
.rpt-tl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rpt-tl-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.rpt-tl-desc { font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }
.rpt-tl-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid;
  white-space: nowrap; flex-shrink: 0;
}
.rpt-tl-badge.live { background: rgba(34,197,94,.1); color: #15803D; border-color: rgba(34,197,94,.25); }
.rpt-tl-badge.coming { background: var(--amber-lt); color: #92400E; border-color: rgba(245,158,11,.3); }
.rpt-tl-badge.upcoming { background: var(--bg-grey); color: var(--ink-3); border-color: var(--line); }

/* ─────────────────────────────────────────────────────
   TRUST STRIP  (reuses measure-trust dark style via override)
───────────────────────────────────────────────────── */
.rpt-trust {
  padding: 96px 0;
  background: linear-gradient(160deg, #062A40 0%, #083A56 55%, #0A4A6E 100%);
  position: relative; overflow: hidden;
}
.rpt-trust::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 95% 20%, rgba(14,165,233,.20), transparent 55%),
    radial-gradient(ellipse 40% 50% at 5%  85%, rgba(14,165,233,.10), transparent 55%);
  pointer-events: none;
}
.rpt-trust-inner { position: relative; z-index: 1; }
.rpt-trust-hd { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.rpt-trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rpt-trust-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px 22px;
  transition: all .2s;
}
.rpt-trust-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(14,165,233,.40);
  transform: translateY(-4px);
}
.rpt-trust-ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.28);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.rpt-trust-ico svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.8; fill: none; }
.rpt-trust-stat { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
.rpt-trust-stat em { font-style: normal; color: var(--accent); font-size: 20px; }
.rpt-trust-name { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 8px; }
.rpt-trust-body { font-size: 12px; line-height: 1.68; color: rgba(255,255,255,.45); }

/* ─────────────────────────────────────────────────────
   INTEGRATIONS  (teal accent)
───────────────────────────────────────────────────── */
.rpt-integrations { padding: 64px 0; background: #fff; border-top: 1px solid var(--line); }
.rpt-int-hd { text-align: center; margin-bottom: 36px; }
.rpt-int-logos {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.rpt-int-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bg-grey);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  transition: all .16s;
}
.rpt-int-pill:hover { border-color: rgba(14,165,233,.35); color: var(--accent); background: var(--accent-lt); }
.rpt-int-pill-ico {
  width: 20px; height: 20px; border-radius: 5px;
  display: grid; place-items: center; flex-shrink: 0;
}
.rpt-int-pill-ico svg { width: 11px; height: 11px; stroke-width: 2; fill: none; }

/* ─────────────────────────────────────────────────────
   QUOTE
───────────────────────────────────────────────────── */
.rpt-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #0C5F8A 0%, #0A4A6E 55%, #083A56 100%);
  position: relative; overflow: hidden;
}
.rpt-quote::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.07), transparent 55%);
  pointer-events: none;
}
.rpt-quote-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.rpt-quote-mark { font-size: 80px; line-height: .8; color: rgba(255,255,255,.18); font-family: Georgia,serif; margin-bottom: 8px; }
.rpt-quote-text { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.55; color: #fff; font-weight: 500; margin-bottom: 28px; letter-spacing: -.01em; }
.rpt-quote-attr { display: flex; align-items: center; justify-content: center; gap: 12px; }
.rpt-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.rpt-quote-who { font-size: 13.5px; font-weight: 700; color: #fff; }
.rpt-quote-co  { font-size: 12px; color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────── */
.rpt-faq { padding: 96px 0; background: var(--bg-grey); }
.rpt-faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.rpt-faq-sidebar { position: sticky; top: 124px; }
.rpt-faq-sidebar-title { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.rpt-faq-sidebar-body { font-size: 14px; line-height: 1.72; color: var(--ink-3); margin-bottom: 24px; }

/* ─────────────────────────────────────────────────────
   CTA  (teal)
───────────────────────────────────────────────────── */
.rpt-cta { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); }
.rpt-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.rpt-cta-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 12px; }
.rpt-cta-title strong { color: var(--accent); }
.rpt-cta-body { font-size: 15px; color: var(--ink-3); line-height: 1.68; max-width: 520px; }
.rpt-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Teal button variants ── */
.btn-teal {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(14,165,233,.32);
}
.btn-teal:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 22px rgba(14,165,233,.42);
  transform: translateY(-1px);
  color: #fff;
}
.btn-teal-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
}
.btn-teal-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────────────────
   SHARED WIDGET HELPERS  (teal-tinted)
───────────────────────────────────────────────────── */
.rpt-metric {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 14px;
}
.rpt-metric-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 6px; }
.rpt-metric-val { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.025em; line-height: 1; }
.rpt-metric-val em { font-style: normal; color: var(--accent); font-size: 14px; }
.rpt-metric-chg { font-size: 11px; font-weight: 600; color: var(--green); margin-top: 4px; }

.rpt-status-list { display: flex; flex-direction: column; gap: 6px; }
.rpt-status-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: var(--bg-pale);
  border-radius: 8px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; color: var(--ink-2);
}
.rpt-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.rpt-progress-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--line);
}
.rpt-progress-row:last-child { border: none; }
.rpt-progress-lbl { font-size: 12px; font-weight: 500; color: var(--ink-2); flex: 1; min-width: 0; }
.rpt-progress-track { flex: 2; height: 6px; background: var(--bg-slate); border-radius: 3px; overflow: hidden; }
.rpt-progress-fill { height: 100%; border-radius: 3px; transition: width .8s ease; }
.rpt-progress-val { font-size: 11px; font-weight: 700; width: 36px; text-align: right; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .fw-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .rpt-steps { grid-template-columns: repeat(3, 1fr); }
  .rpt-steps::before { display: none; }
  .rpt-trust-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .rpt-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .rpt-type-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .rpt-ai-row { grid-template-columns: 1fr; gap: 40px; }
  .rpt-ai-row.rev .rpt-ai-visual { order: 0; }
  .rpt-faq-inner { grid-template-columns: 1fr; gap: 44px; }
  .rpt-faq-sidebar { position: static; }
  .rpt-cta-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .rpt-hero { padding: 52px 0 44px; }
  .fw-cards-grid { grid-template-columns: 1fr; }
  .rpt-type-tabs { flex-wrap: wrap; }
  .rpt-type-tab { flex: calc(50% - 1px); border-bottom: 1px solid var(--line); }
  .rpt-steps { grid-template-columns: 1fr; }
  .rpt-trust-cards { grid-template-columns: 1fr; }
  .rpt-tl-item { grid-template-columns: 20px 1fr; }
  .rpt-tl-badge { display: none; }
}
