/* Subtiele, consistente paginering */
body .blog-overview-main .taupe-pagination {
  max-width: 800px !important;
  margin: 0 auto 2.5rem auto !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 12px !important;
  font-family: 'Century Gothic', Arial, sans-serif !important;
}

/* Kill all pseudo-elements to remove any unexpected decorations */
body .blog-overview-main .taupe-pagination a::before, body .blog-overview-main .taupe-pagination a::after,
body .blog-overview-main .taupe-pagination span::before, body .blog-overview-main .taupe-pagination span::after {
  content: none !important;
  display: none !important;
}

body .blog-overview-main .taupe-pagination a,
body .blog-overview-main .taupe-pagination span {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: #f6f7f5 !important;
  color: #636a63 !important;
  border: 1.5px solid #d2d5ce !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

body .blog-overview-main .taupe-pagination a:hover {
  background-color: #636a63 !important;
  color: #fff !important;
  border-color: #636a63 !important;
  text-decoration: none !important;
}

body .blog-overview-main .taupe-pagination .active {
  background-color: #636a63 !important;
  color: #fff !important;
  border-color: #636a63 !important;
  pointer-events: none !important;
}

body .blog-overview-main .taupe-pagination .pagination-arrow svg {
  width: 16px !important;
  height: 16px !important;
}
body .blog-overview-main .taupe-pagination .pagination-arrow:hover svg path {
  stroke: #fff !important;
}

/* Ellipsis styles */
body .blog-overview-main .pagination-ellipsis {
  color: #636a63 !important;
  font-weight: 400 !important;
  padding: 0 0.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body .blog-overview-main .taupe-pagination a,
  body .blog-overview-main .taupe-pagination span,
  body .blog-overview-main .taupe-pagination .pagination-arrow {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    font-size: 0.9rem !important;
  }
  body .blog-overview-main .taupe-pagination .pagination-arrow svg {
    width: 14px !important;
    height: 14px !important;
  }
  body .blog-overview-main .taupe-pagination {
    gap: 6px !important;
  }
} 