/* CSS Document */

/* ══════════════════════════════════════════
   PAGINAZIONE
══════════════════════════════════════════ */
.tvi-pager {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.tvi-pager-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tvi-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--tr);
  cursor: pointer;
}
.tvi-pager-btn:hover {
  border-color: var(--red);
  color: var(--text);
  background: var(--surface2);
}
.tvi-pager-active {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(155,27,42,0.35);
}
.tvi-pager-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}