/* All Courses page — /all-courses/. A simple paginated list of course links.
   Reuses the .page/.card frame from legal.css; only the list + pager live here. */

.course-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.course-list li {
  border-bottom: 1px solid var(--border);
}

.course-list a {
  display: block;
  padding: 10px 2px;
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.course-list a:hover {
  text-decoration: underline;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.pager-link {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.pager-link:hover { text-decoration: underline; }

.pager-link--off {
  color: var(--border);
  cursor: default;
  text-decoration: none;
}

.pager-count {
  color: var(--medium-gray);
  white-space: nowrap;
}
