File size: 623 Bytes
ffc05fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | .wrapper {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.label {
font-size: 0.72rem;
font-weight: 400;
color: var(--mauve-400);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.mapContainer {
height: 240px;
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-soft);
background: var(--beige-100);
}
.mapPlaceholder {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.82rem;
color: var(--mauve-300);
}
.rangeDesc {
font-size: 0.78rem;
color: var(--mauve-400);
line-height: 1.5;
font-style: italic;
}
|