/* =========================================================================
   Pages (all pages) — full list of every indexed page, newest first.
   ========================================================================= */
.pages-list { list-style: none; margin: 0 0 28px; padding: 0; }
.pages-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
}
.pages-item__n {
  flex: none;
  width: 2.5em;
  text-align: right;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.pages-item__link { flex: 1; text-decoration: none; color: var(--text); }
.pages-item__link:hover { color: var(--accent); }
.pages-item__date { flex: none; color: var(--text-muted); font-size: 0.8rem; white-space: nowrap; }

.pager { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.pager__btn {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
}
.pager__btn:hover { background: var(--surface-2); }
.pager__btn.is-current {
  background: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
  font-weight: 600;
}
