/* =============================================
   INDOCHINA — SHARED PAGINATION
   Dùng chung cho: blog archive, trip archive
   Class wrapper: .ic-pagination
   ============================================= */

.ic-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.ic-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 4px;
  border-radius: 8px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: #3d3d3d;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ic-pagination .page-numbers:hover {
  background: #e8f5ee;
  color: var(--ic-green, #19974a);
  border-color: var(--ic-green, #19974a);
}

.ic-pagination .page-numbers.current {
  background: var(--ic-green, #19974a);
  color: #ffffff;
  border-color: var(--ic-green, #19974a);
  pointer-events: none;
}

.ic-pagination .page-numbers.prev,
.ic-pagination .page-numbers.next {
  background: #d4e8da;
  color: var(--ic-green, #19974a);
  border-color: #d4e8da;
}

.ic-pagination .page-numbers.prev:hover,
.ic-pagination .page-numbers.next:hover {
  background: var(--ic-green, #19974a);
  color: #ffffff;
  border-color: var(--ic-green, #19974a);
}

.ic-pagination .page-numbers.dots {
  background: #ffffff;
  color: #3d3d3d;
  border: 1px solid #d9d9d9;
  cursor: default;
  pointer-events: none;
  letter-spacing: 2px;
}

@media (max-width: 480px) {
  .ic-pagination              { gap: 4px; }
  .ic-pagination .page-numbers { min-width: 36px; height: 36px; font-size: 13px; }
}
