/* ============================================================
   PER-TAB CHARTS — styling (pairs with 91-per-tab-charts.js)
   Reuses the same visual language as .hero-chart (30-hero.css)
   so Decizii/Leads' own charts feel consistent with the dashboard.
   ============================================================ */
.ptc-mount { margin: 0 0 var(--sp-6); }

.ptc-chart {
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
}
.ptc-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.ptc-chart-title {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.ptc-legend {
  display: flex;
  gap: var(--sp-4);
}
.ptc-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-weight: 600;
}
.ptc-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
