.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: 360px;
aspect-ratio: 16 / 9;
}
.map-cities__map iframe {
width: 100%;
height: 100%;
border: 0;
pointer-events: none;
}
.map-cities__map.is-interactive iframe {
pointer-events: auto;
}
@media (max-width: 600px) {
.map-cities__item {
padding: 8px 14px;
font-size: 14px;
}
}