/**
 * Pager styling for Gafoor list pages (full + mini pagers).
 */
.pager__items,
nav.pager .pagination,
.mini-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 28px 0 8px;
  padding: 0;
  list-style: none;
}

.pager__item a,
nav.pager .pagination .page-link,
.mini-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1;
  color: #4c2363;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(76, 35, 99, 0.2);
  border-radius: 8px;
}

.pager__item a:hover,
nav.pager .pagination .page-link:hover,
.mini-pager a:hover {
  background: #f4eefb;
  border-color: rgba(76, 35, 99, 0.45);
}

.pager__item.is-active a,
nav.pager .pagination .page-item.active .page-link {
  color: #fff;
  background: #4c2363;
  border-color: #4c2363;
}

.pager__item--ellipsis {
  display: inline-flex;
  align-items: center;
  min-width: 38px;
  height: 38px;
  justify-content: center;
  color: #888;
}
