/* Pagination styles */
.pager { margin: 2rem 0; }

.pager__items {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pager__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem;
  color: #374151;
  text-decoration: none;
  /* transition: background-color 0.2s; */
}

/* .pager__item a:hover { background-color: #f3f4f6; }
.pager__item a:focus { outline: none; } */

/* Active page */
.pager__item.is-active a,.pager__item a:hover {
  background-color: #a7d4b8;
  color: #1f2937;
  border-radius: 1rem;
}

/* Navigation arrows */
.pager__item--first a,
.pager__item--previous a,
.pager__item--next a,
.pager__item--last a {
  padding: 0.25rem;
  font-size: 0.875rem;
}

.pager__item--first { margin-right: -0.15rem; }
.pager__item--next {
  margin-left: 0.25rem;
  margin-right: -0.15rem;
}

/* Ellipsis */
.pager__item--ellipsis {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0.5rem;
  color: #9ca3af;
}
