.representatives-map {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    margin: 30px 0 50px;
}

.representatives-map__controls label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.representatives-map__controls select {
    width: 100%;
    min-height: 44px;
    padding: 8px 36px 8px 12px;
    border: 1px solid #c8c8c8;
    background-color: #fff;
}

.representatives-map__map {
    width: 100%;
    height: 520px;
    background-color: #eef1f3;
}

.representatives-map .leaflet-popup-content {
    min-width: 220px;
    line-height: 1.5;
}

.representatives-map .leaflet-popup-content strong {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .representatives-map {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .representatives-map__map {
        height: 420px;
    }
}