.webgene-pagination {
  font-size: 14px;
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 86px;
}

.webgene-pagination a:hover {
  opacity: 0.7;
}

.webgene-pagination ul {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding-inline-start: 0;
}

.webgene-pagination ul .number a {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: grid;
  height: 40px;
  line-height: 2.2;
  place-items: center;
  width: 40px;
}

.webgene-pagination ul .number.selected a {
  background: #ef0910;
  border: 1px solid #ef0910;
  border-radius: 50%;
  color: #fff;
}

li.next,
li.prev {
  position: relative;
}

li.next a,
li.prev a {
  padding: 2px;
  position: relative;
  text-decoration: underline;
  width: 40px;
}

@media screen and (min-width: 768px) {
  li.next a,
  li.prev a {
    line-height: 1;
    margin-top: 3px;
    padding-block: 10px;
    width: auto;
    z-index: 10;
  }
  li.prev:after,
  li.next:after {
    pointer-events: auto;
  }
}