.pager {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.pager_left {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.pager__item {
  min-width: 32px;
  border: 2px solid #E5E7EB;
  height: 32px;
  font-size: 16px;
  color: #6B7280;
  line-height: 28px;
  border-radius: 2px;
  transition: border-color 0.2s ease-out;
}
.pager__item.is-active {
  border-color: #006FFF;
  color: #fff;
  background: #006FFF;
}
.pager__item:hover {
  border-color: #5A3BFE;
}
.pager__prev, .pager__next {
  position: relative;
  width: 325px;
  height: 32px;
  border: 2px solid #E5E7EB;
  -webkit-box: 0;
  -moz-box: 0;
  -webkit-flex: 0 0 32px;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  transition: border-color 0.2s ease-out;
}
.pager__prev:hover, .pager__next:hover {
  border-color: #5A3BFE;
}
.pager__prev:before, .pager__next:before {
  position: absolute;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  top: 50%;
  left: 50%;
  content: "";
}
.pager__prev:before {
  background-image: url("../../img/news/pager-prev-n.svg");
}
.pager__next:before {
  background-image: url("../../img/news/pager-next-n.svg");
}
