.map-cities {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-cities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.map-cities__item {
    padding: 10px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-weight: 600;
    color: #0f172a;
}

.map-cities__map {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    min-height: 240px;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.map-cities__map > * {
    width: 100% !important;
    max-width: 100%;
}

.map-cities__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    max-width: 100%;
    height: 100% !important;
}

@media (max-width: 900px) {
    .map-cities__map {
        min-height: 220px;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 600px) {
    .map-cities__map {
        min-height: 200px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 600px) {
    .map-cities__item {
        padding: 8px 14px;
        font-size: 14px;
    }
}
