/* ==========================================================================
   СТИЛІЗАЦІЯ ПАГІНАЦІЇ
   ========================================================================== */

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

/* Загальний стиль для всіх елементів (посилань та поточного номера) */
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Ефект при наведенні на посилання */
.pagination a.page-numbers:hover {
    background-color: #f8f9fa;
    border-color: var(--green, #4CAF50);
    color: var(--green, #4CAF50);
}

/* Активна сторінка (поточна) */
.pagination .page-numbers.current {
    background-color: var(--green, #4CAF50);
    border-color: var(--green, #4CAF50);
    color: #fff;
    cursor: default;
}

/* Стилізація трьох крапок (dots) */
.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* Стилізація стрілок (Next/Prev) через Dashicons */
.pagination .page-numbers .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Адаптивність для мобільних пристроїв */
@media screen and (max-width: 480px) {
    .pagination {
        gap: 5px;
    }
    .pagination .page-numbers {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
    }
}