.block-map h2 { margin-bottom: 16px; }
.block-map .map-frame {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 2px 16px rgba(0,0,0,0.08));
}
.block-map .map-frame iframe {
    width: 100%; height: 100%; border: 0;
}
.block-map .map-caption {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-medium, #64748b);
}
.block-map .map-caption a { color: var(--brand-primary, #2563eb); text-decoration: none; }
.block-map .map-caption a:hover { text-decoration: underline; }
.block-map .map-error {
    padding: 16px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
}

@media (max-width: 768px) {
    .block-map .map-frame { height: 320px; }
}
