.custom-pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.custom-pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pagination a,
.custom-pagination span {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #888;
  font-family: var(--title-sans);
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.custom-pagination .prev,
.custom-pagination .next {
  position: relative;
}

.custom-pagination .prev::before,
.custom-pagination .next::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 10%;
  font-size: 20px;
}

.custom-pagination .prev::before {
  content: "\f053";
}

.custom-pagination .next::before {
  content: '\f054';
}

.custom-pagination a:hover {
  color: #000;
}

.custom-pagination .active a {
  font-weight: 700;
  color: #000;
}

.custom-pagination .dots {
  color: #bbb;
  pointer-events: none;
}

.custom-pagination .disabled span {
  color: #ccc;
  pointer-events: none;
}
