/* =========================================================
   cases.styles.css — All cases listing page
   ========================================================= */

.cases-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .2s var(--ease);
}
.chip:hover { color: #fff; border-color: var(--orange); }
.chip.is-active {
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #17233a;
  border-color: transparent;
}
.result-count {
  font-size: 13px;
  color: var(--muted);
}
.result-count #count { color: var(--orange-hi); font-weight: 700; }

@media (max-width: 560px) {
  .cases-toolbar { flex-direction: column; align-items: flex-start; }
}
