/*-------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.pagination a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #2589d0;
  padding: 0 1.4em;
}
.pagination a:not(:hover) {
  text-decoration: none;
}
.pagination .current a {
  background-color: #2589d0;
  color: #fff;
  pointer-events: none;
}