.pager__items {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  padding-bottom: 1rem;
  margin: 0;
  padding-top: 3rem;
}
.pager__item {
  padding: 0;
  display: flex;
  width: 11px;
  height: 25px;
  justify-content: center;
  align-items: center;
}
.pager__item.is-active {
  padding: 4px 8px;
  background-color: var(--color-brand--4);
  border-radius: 8px;
  width: 32px;
  height: 32px;
}
.pager__item--next a,
.pager__item--previous a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager__item--previous a::after,
.pager__item--next a::after {
  content: '';
  background-image: url('../../images/pager/pager-previous.svg');
  width: 21px;
  height: 21px;
  display: block;
  background-repeat: no-repeat;
}
.pager__item--next a::after {
  transform: rotate(180deg);
}
.pager__item--next a span,
.pager__item--previous a span {
  display: none;
}
.pager__item--last,
.pager__item--first {
  display: none;
}


.page--actualites .pager__item.is-active {
  background-color: var(--color-brand--4);
}
