/**
 * Google Maps embed (iframe) — home + kontakt.
 */
.nn-map-outer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: var(--container-pad, 1rem);
  padding-right: var(--container-pad, 1rem);
  margin-inline: auto;
}

.nn-map-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

.nn-map-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  max-height: min(70vh, 560px);
  background: #e8e6e1;
}

.nn-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .nn-map-embed {
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: min(65vh, 480px);
  }
}
