/* ==========================================================================
   JURIBLE DESIGN SYSTEM - Pagination (WordPress Native)
   ========================================================================== */

/* ==========================================================================
   QUERY PAGINATION CONTAINER
   ========================================================================== */

.wp-block-query-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wp--preset--spacing--xs);
    margin-top: var(--wp--preset--spacing--xl);
}

/* ==========================================================================
   PAGINATION NUMBERS
   ========================================================================== */

.wp-block-query-pagination-numbers {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--xs);
}

.wp-block-query-pagination-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--wp--preset--font-family--poppins);
    font-size: 14px;
    font-weight: 500;
    color: var(--wp--preset--color--text-gray);
    background: transparent;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--wp--custom--border-radius--md);
    text-decoration: none;
    transition: all var(--wp--custom--transition--default);
}

.wp-block-query-pagination-numbers .page-numbers:hover {
    border-color: var(--wp--preset--color--border-muted);
    background: var(--wp--preset--color--muted);
}

.wp-block-query-pagination-numbers .page-numbers.current {
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    border-color: var(--wp--preset--color--primary);
}

.wp-block-query-pagination-numbers .page-numbers.dots {
    border: none;
    background: transparent;
    color: var(--wp--preset--color--text-muted);
    pointer-events: none;
}

/* ==========================================================================
   PREVIOUS / NEXT LINKS
   ========================================================================== */

.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
    font-family: var(--wp--preset--font-family--poppins);
    font-size: 14px;
    font-weight: 500;
    color: var(--wp--preset--color--text-muted);
    text-decoration: none;
    transition: color var(--wp--custom--transition--default);
}

.wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-next:hover {
    color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   NAVIGATION DOTS (for carousels/sliders)
   ========================================================================== */

.nav-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wp--preset--spacing--xs);
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wp--preset--color--border);
    transition: all var(--wp--custom--transition--default);
    cursor: pointer;
}

.nav-dot:hover {
    background: var(--wp--preset--color--border-muted);
}

.nav-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--wp--preset--color--primary);
}

