/* Page-specific overrides only — everything reusable lives in shared/css */

.research-attribution {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
}

.priority-item {
  border-left: 3px solid var(--cyan);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
}

.priority-item h3 {
  margin-bottom: var(--space-2);
}

.priority-item .quick-win {
  color: var(--text);
}

.priority-item .quick-win-detail {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

/* Text-equivalent of the radar chart above (WCAG 2.2 AA) — qualitative
   low/mid/high bands only, never a printed number (see priority-selection.js
   categoryScoreBand and the "no raw score" rule it documents). */
.category-overview-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 var(--space-6);
}

.category-overview-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text);
}

.category-overview-list li:last-child {
  border-bottom: none;
}

.band-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.band-dot.band-low {
  background: var(--red);
}

.band-dot.band-mid {
  background: var(--yellow);
}

.band-dot.band-high {
  background: var(--green);
}

.band-text {
  margin-left: auto;
  color: var(--muted);
  font-size: var(--text-xs);
}
