.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 10px;
}
.pagination .page-item {
  width: 32px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  color: var(--main-color);
  font-weight: 500;
}
.pagination .page-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--main-color);
}
.pagination .page-item:first-child,
.pagination .page-item:last-child {
  font-size: 24px;
  padding-bottom: 3px;
}
.pagination .page-item:first-child span,
.pagination .page-item:last-child span {
  transform: translateY(0);
}
.pagination .page-item:first-child a,
.pagination .page-item:last-child a {
  transform: translateY(0);
}
.pagination .active {
  /* background-color: var(--main-color); */
  color: var(--main-color);
  background-color: rgba(255, 255, 255, 0.1);
}
.pagination .disabled {
  display: none;
  color: #a3a3a3;
}
