.bp-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 20px;
}

.bp-map {
    width: 100%;
    height: 500px;
}

.bp-card {
    border: 1px solid #eee;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    padding: 10px;
}

.bp-card__image img {
    display: block;
    width: 200px;
    height: auto;
    object-fit: cover;
}

.bp-card__price-main {
    font-weight: 700;
}

.bp-filters {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* CLUSTERS ESTILO AIRBNB */
.bp-cluster-wrapper {
    background: transparent !important;
    border: none !important;
}

.bp-cluster {
    background: #204038;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

