.pager {
  margin-top: 2.4rem;
}
@media (min-width: 62em) {
  .pager {
    margin-top: 4.8rem;
  }
}
.pager__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.pager__item {
  background: #6b6b10;
  border: 2px solid #6b6b10;
  border-radius: 100vw;
  height: 46px;
  list-style: none;
  margin-right: 1.2rem;
  min-width: 46px;
  transition: background 300ms ease;
}
.pager__item:last-child {
  margin-right: 0;
}
.pager__item a {
  color: #fff;
  display: grid;
  font-weight: 700;
  font-size: 20px;
  height: 100%;
  place-content: center;
  transition: color 300ms ease;
  width: 100%;
}
.pager__item.is-active, .pager__item:hover {
  background: #fff;
}
.pager__item.is-active a, .pager__item:hover a {
  color: #6b6b10;
}
.pager__item--first, .pager__item--last {
  display: none;
}
.pager__item--next, .pager__item--previous {
  background: #6b6b10;
  border-radius: 9px;
  padding: 0 1.2rem;
}
.pager__item--next a, .pager__item--previous a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
.pager__item--ellipsis {
  align-items: flex-end;
  background: transparent;
  border: 0;
  color: #6b6b10;
  display: grid;
  font-weight: 700;
  justify-content: center;
  min-width: 24px;
}
.pager__item--ellipsis:hover {
  background: transparent;
}