


/*todo:: pager*/


.js-pager__items {
  padding-left:0px;
  clear: both;
  text-align: center;
}
.js-pager__item {
  display: inline;
  padding: 0.5em;
}
.js-pager__item.is-active {
  font-weight: bold;
} 


.js-pager__items {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  list-style-type:none;
  gap:var(--gutter-2);
}

.js-pager__items li {
  display: inline-block;
}