.vtsg-grid-empreendimentos,
.vtsg-grid-empreendimentos-wrapper {
    --vtsg-grid-gap: 20px;
    min-height: 60vh;
    flex-wrap: wrap;
    gap: var(--vtsg-grid-gap);
    align-items: stretch;
    width: 100%;
    height: auto;
}

.vtsg-grid-empreendimentos,
.vtsg-grid-empreendimentos-wrapper,
.vtsg-grid-empreendimentos-pagination-wrapper,
.vtsg-grid-empreendimentos-pagination,
.vtsg-grid-empreendimentos-pagination-items,
.vtsg-grid-empreendimentos-pagination-item,
.vtsg-grid-empreendimentos-pagination-prev,
.vtsg-grid-empreendimentos-pagination-next,
.vtsg-grid-empreendimentos-pagination-ellipsis {
    position: relative;
    display: flex;
}

.vtsg-grid-empreendimentos-pagination-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.vtsg-grid-empreendimentos-pagination {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    border: 2px solid #f1f1f1;
    border-radius: 4px;
    overflow: hidden;
}

.vtsg-grid-empreendimentos-pagination-items {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    padding: inherit;
}

.vtsg-grid-empreendimentos-pagination-item,
.vtsg-grid-empreendimentos-pagination-prev,
.vtsg-grid-empreendimentos-pagination-next,
.vtsg-grid-empreendimentos-pagination-ellipsis {
    width: 28px;
    height: 28px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    list-style: none !important;
    cursor: pointer;
}

.vtsg-grid-empreendimentos-pagination-item:hover,
.vtsg-grid-empreendimentos-pagination-prev:hover,
.vtsg-grid-empreendimentos-pagination-next:hover {
    background: var(--e-global-color-accent);
    color: #fff;
}

/* Error Container & Clear Filters Button */
.vtsg-grid-empreendimentos-error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px;
    gap: 20px;
}

.vtsg-grid-empreendimentos-error {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin: 0;
}

.vtsg-grid-empreendimentos-clear-filters-button {
    background: var(--e-global-color-primary, #C08D63);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.vtsg-grid-empreendimentos-clear-filters-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}