/* ═══════════════════════════════════════════════════
   Секция с картой
═══════════════════════════════════════════════════ */
.map-section {
    background: var(--bg-soft);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--line);
    margin-top: 36px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
    font-family: var(--font-body);
}

.map-hint svg {
    flex-shrink: 0;
    color: var(--accent);
}

