/**
 * @file
 * Pager / pagination styles.
 */

.pager {
  text-align: center;
  margin: 30px 0;
}

.pager__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 4px;
}

.pager__item {
  display: inline-block;
}

.pager__item a,
.pager__item span {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #3e3e3e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pager__item a:hover {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff;
}

.pager__item.is-active span {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #fff;
  font-weight: 600;
}

.pager__item--previous a,
.pager__item--next a {
  font-weight: 500;
}
