.archiveNav__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.archiveNav__link {
  align-items: center;
  border: 1px solid #000;
  border-radius: 100px;
  display: flex;
  gap: 0.25rem;
  padding: 0 0.625rem;
}

.archiveNav__circle {
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  height: 1rem;
  position: relative;
  width: 1rem;
}

.archiveNav__link--active .archiveNav__circle {
  background: #424242;
}

.archiveNav__link--active .archiveNav__circle::before {
  background: url(../../images/common/icon-check.svg) no-repeat center / cover;
  content: "";
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.8125rem;
}

.archiveNav__text {
  font-size: 0.875rem;
}

.news__archive {
  padding: 2.5rem 1.25rem;
}

.news__pagination .wp-pagenavi {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 1.875rem auto 0;
  width: fit-content;
}

.news__pagination .page,
.news__pagination .current {
  align-items: center;
  border: 1px solid #707070;
  border-radius: 50%;
  color: var(--colorBlack);
  display: flex;
  font-family: var(--familyInter);
  font-size: 0.875rem;
  height: 2.5rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  width: 2.5rem;
}

.news__pagination .current {
  background: #424242;
  color: #fff;
}

.nextpostslink,
.previouspostslink {
  color: transparent;
  display: block;
  height: 1.5rem;
  position: relative;
  width: 1.5rem;
}

.nextpostslink::after,
.previouspostslink::after {
  background: url(../../images/common/icon-chevron_right_black.svg) no-repeat center / cover;
  content: "";
  height: 1.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
}

.previouspostslink::after {
  transform: translate(-50%, -50%) scaleX(-1);
}
