.c-pager ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pager .pager__item--previous a,
.c-pager .pager__item--next a {
  text-decoration: none;
  color: #1A1A1A;
  transition: background-color 0.3s ease-out;
}
.c-pager .pager__item--previous a:hover,
.c-pager .pager__item--next a:hover {
  background-color: #1A1A1A;
}
.c-pager .pager__item--previous {
  margin-right: 24px;
  margin-right: 1.5rem;
}
.c-pager .pager__item--next {
  margin-left: 24px;
  margin-left: 1.5rem;
}
.c-pager__inactive {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  display: block;
  color: #1A1A1A;
  cursor: default;
}
.c-pager a {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  margin-right: 6px;
  margin-right: 0.375rem;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #1A1A1A;
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.c-pager a:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
.c-pager .is-active a {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
