/* ============================================================================
 * directory-courses.css — Courses directory additions on top of directory-orgs.css.
 *
 * Reuses every base pattern from the orgs directory: hero, sticky filter bar,
 * chip strips, active-pill bar, card grid. Drops the map sidebar (no geo data
 * for courses), so the body is a single full-width column.
 * ============================================================================ */

/* ─── Single-column body (no map sidebar) ─── */
.dir-body--courses {
  grid-template-columns: 1fr;
  max-width: 1400px;
}
@media (min-width: 1700px) {
  .dir-body--courses { max-width: 1700px; }
}

/* ─── Tag-chip count badge ─── */
.filter-chip .chip-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-500);
  background: var(--bg-alt);
  border-radius: 999px;
}
.filter-chip.active .chip-count {
  color: #fff;
  background: rgba(255, 255, 255, .22);
}
