.object-list-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .object-list-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.object-list-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.object-list-pagination > * {
    display: flex !important;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.object-list-pagination > .current {
    background-color: var(--e-global-color-primary);
    color: white;
}