/* Preserve the existing serif grid and sapphire palette. */
#categories .category-pager { position: relative; }
#categories .category-pages { display: grid; }
#categories .category-page {
  grid-area: 1 / 1;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
#categories .category-page.is-active { visibility: visible; opacity: 1; pointer-events: auto; }
#categories .category-page a { min-width: 0; padding-right: 26px; padding-block: 24px; }
#categories .category-page a > span { flex: 0 0 auto; }
#categories .category-page h3 { line-height: 1.16; overflow-wrap: break-word; }
#categories .category-page-arrow,
#categories .category-page-dots button {
  appearance: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #d5e1ee;
  cursor: pointer;
  box-shadow: none;
  transition: color 180ms ease, background-color 180ms ease;
}
#categories .category-page-arrow {
  position: absolute;
  top: calc((100% - 68px) / 2);
  transform: translateY(-50%);
}
#categories .category-page-prev { left: -48px; }
#categories .category-page-next { right: -48px; }
#categories .category-page-arrow[hidden] { display: none !important; }
#categories .category-page-arrow svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.4; }
#categories .category-page-dots { display: flex; justify-content: flex-end; padding: 24px 24px 0; }
#categories .category-page-dots span { width: 7px; height: 7px; border: 1px solid #d5e1ee; border-radius: 50%; }
#categories .category-page-dots [aria-current="page"] span { background: #fff; border-color: #fff; }
#categories :is(.category-page-arrow, .category-page-dots button):focus-visible { outline: 1px solid #e8eff7; outline-offset: 2px; }
@media (hover: hover) {
  #categories :is(.category-page-arrow, .category-page-dots button):hover { color: #fff; background: #ffffff0d; }
}
#categories :is(.category-page-arrow, .category-page-dots button):active { background: #ffffff14; }
@media (max-width: 1300px) {
  #categories .category-pager { padding-inline: 36px; }
  #categories .category-page-prev { left: -8px; }
  #categories .category-page-next { right: -8px; }
}
@media (max-width: 800px) {
  #categories .category-page a { gap: 20px; padding-right: 0; min-height: 130px; }
  #categories .category-page-dots { padding-right: 0; }
}
@media (max-width: 520px) {
  #categories .category-page h3 { font-size: 28px; }
  #categories .category-page a { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  #categories .category-page,
  #categories .category-page-arrow,
  #categories .category-page-dots button { transition: none; }
}
