#posts-page .category-list .category-item a {
  color: #000 !important;
}

#posts-page .category-list .category-item:hover a {
  color: var(--primary-color);
}

#posts-page .page-navi {
  display: flex;
  flex-direction: row;
  gap: 3px;
  justify-content: center;
  margin: 15px 0px 30px 0px;
}

#posts-page .page-pagi {
  padding: 3px 10px;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--dark-light-color);
}

#posts-page .page-pagi:hover {
  border: 1px solid #d0d7de;
  border-radius: 5px;
  cursor: pointer;
}

#posts-page .page-pagi.active {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
}

#posts-page .disabled-link {
  pointer-events: none;
}