/* Virtual pagination (no scrollbar) */
.vp-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.vp-btn {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 12, 20, 0.45);
  color: #eaf0ff;
  padding: 8px 12px;
  cursor: pointer;
}

.vp-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.vp-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.vp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  cursor: pointer;
}

.vp-dot.active {
  background: rgba(36,168,197,0.95);
  border-color: rgba(36,168,197,0.95);
}

.vp-label {
  font-size: 0.85rem;
  color: rgba(230,235,255,0.78);
  white-space: nowrap;
}

/* Smooth hide/show */
.post-card.vp-hidden {
  display: none !important;
}
