.bm-container-fd89d4bf {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.bm-cards-fd89d4bf {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for cards container */
.bm-cards-fd89d4bf::-webkit-scrollbar {
    width: 6px;
}
.bm-cards-fd89d4bf::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.bm-cards-fd89d4bf::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}

.bm-map-wrapper-fd89d4bf {
    flex: 1.5;
    background: #eef2f5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.bm-map-fd89d4bf {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bm-card-fd89d4bf {
    display: flex;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bm-card-fd89d4bf.active, 
.bm-card-fd89d4bf:hover {
    border-color: #fce133;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bm-card-number {
    background: #111;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bm-card-fd89d4bf.active .bm-card-number,
.bm-card-fd89d4bf:hover .bm-card-number {
    background: #fce133;
    color: #111;
}

.bm-card-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
}

.bm-card-content p {
    margin: 0 0 12px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.bm-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #444;
    font-weight: 600;
    flex-wrap: wrap;
}

.bm-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bm-card-meta i, .bm-card-meta svg {
    color: #555;
    font-size: 14px;
    width: 14px;
    height: 14px;
    fill: #555;
}

/* Responsive */
@media (max-width: 767px) {
    .bm-container-fd89d4bf {
        flex-direction: column;
    }
    .bm-map-wrapper-fd89d4bf {
        order: -1; /* Map on top in mobile */
        height: 350px;
        flex: none;
    }
    .bm-cards-fd89d4bf {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}