/* ==========================================================================
   Block: Map
   --------------------------------------------------------------------------
   No comp for this page — plain, token-only styling, easy to discard once
   one exists.
   ========================================================================== */

.awx-map__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--awx-radius);
  background: var(--surface-rule);
}

.awx-map__placeholder {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--awx-space-sm);
  padding: var(--awx-space-md);
  text-align: center;
}

.awx-map__pin {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--surface-muted);
}

.awx-map__placeholder-text {
  margin: 0;
  color: var(--surface-muted);
  font-size: var(--awx-step-0);
}

.awx-map__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--awx-space-sm);
}

/* The interactive embed, once loaded, fills the same frame the placeholder
   occupied — see initMapEmbeds() in assets/js/main.js. */
.awx-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
