.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--size-2);
    margin: var(--size-4) 0;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    line-height: 16px
}

.pagination a {
    background-color: #ffffff;
    color: #000000;
}

.pagination a:hover {
    transform: translateY(-1px);
}


.pagination span.active {
    background-color: var(--color-primary);
    color: #ffffff;
}

@media (max-width: 768px) {
    .pagination {
        gap: var(--size-1);
    }
}