/**
 * CAMN map section – homepage only (static Vallejo air map image).
 * Scoped, BEM-like selectors; reserved height to avoid layout shift.
 * Aligns with Requirements/camn-iframe-purple-air and camn-css-design-pattern.
 */

.camn-map,
.camn-split__map-panel,
.camn-split {
  --camn-map-height: 40vh;
  --camn-map-height-min: 12rem;
  --camn-map-height-max: 50vh;
}

.camn-map {
  margin: 0;
  padding: 0;
  width: 100%;
}

.camn-map__wrapper {
  position: relative;
  width: fit-content;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: var(--lighter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camn-map__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.camn-map__logo {
  position: absolute;
  bottom: -1.875rem;
  right: 0.5rem;
  width: auto;
  height: auto;
  max-width: 4.5rem;
  max-height: 4.5rem;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.camn-map__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--border-radius, 3px) * 2);
}

/* Map height variables are no longer used for this static image;
   wrapper now follows the intrinsic image height. */
