/* PAGINATION */
.wp-paginate {
  margin: 0px;
  display: flex;
  width: 100%;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  padding: 0px;
  padding-top: 3rem;
  color: var(--white);
}
.wp-paginate .title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.wp-paginate .current,
.wp-paginate .gap,
.wp-paginate a {
  color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
}
.wp-paginate .current:hover,
.wp-paginate .gap:hover,
.wp-paginate a:hover {
  text-decoration-color: currentColor;
}
.wp-paginate a {
  text-decoration-line: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .wp-paginate a:hover {
    color: var(--white);
    text-decoration-line: underline;
  }
}
.wp-paginate a:focus {
  text-decoration-line: underline;
}
.wp-paginate a {
  text-decoration-color: transparent;
}
.wp-paginate a:hover {
  text-decoration-color: currentColor;
}
.wp-paginate .current {
  text-decoration: underline;
}
.wp-paginate li {
  margin: 0px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 1rem;
}
