/* ================= VIDEO / PHOTO GALLERY PAGINATION =================
   Append this block to css/styles.css. Uses the site's existing
   saffron accent variable if defined; falls back to a sensible orange. */

.pagination{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.page-btn{
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.page-btn:hover:not(:disabled){
  border-color: var(--saffron, #f97316);
  color: var(--saffron, #f97316);
  transform: translateY(-1px);
}

.page-btn.active{
  background: var(--saffron, #f97316);
  border-color: var(--saffron, #f97316);
  color: #ffffff;
}

.page-btn:disabled{
  opacity: 0.4;
  cursor: not-allowed;
}

.page-btn:focus-visible{
  outline: 2px solid var(--saffron, #f97316);
  outline-offset: 2px;
}

@media (max-width: 480px){
  .page-btn{
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
