#fresh-makelaars .houses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* ── Pagination ───────────────────────────────────────────── */
#fresh-makelaars .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 32px 0 16px;
}

#fresh-makelaars .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--fm2-border, #dde1e7);
    border-radius: var(--fm2-radius, 8px);
    background: #fff;
    color: var(--fm2-text, #1a1f2e);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

#fresh-makelaars .pagination .page-numbers:hover {
    border-color: var(--fm2-blue, #1a5e8a);
    color: var(--fm2-blue, #1a5e8a);
    background: #f5f9fc;
}
