/********************
	Part - Style pagination
********************/
.pagination {
  width : 100%
}

.pagination > div:first-child {
  line-height : 2.5rem
}

.pagination .page-list {
  display      : flex;
  justify-content: center;
  column-gap: 5px;
  background    : #fff;
  padding       : .375rem;
  margin-bottom : 0;
}

.pagination .page-list li {
  display: block;
  width: 44px;
  height: 44px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.50);
  border: 1px solid #EAE3D2;
  width: 44px;
  height: 44px;
  padding: 7px 15px;
}

.pagination .current a {
  font-weight: 600;
  background: #EAE3D2;
  color: #000;
}

.pagination a:not(.previous):not(.next) {
  letter-spacing : .125rem
}

.pagination .disabled {
  color : var(--color-grey-font-default)
}
