/* Eigene Ergänzungen (nicht von Webflow erzeugt).
   Enthält die Zwei-Klick-Lösung für Google Maps: Die Karte wird erst nach
   ausdrücklichem Klick geladen, vorher geht keine Anfrage an Google. */

.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  padding: 32px 24px;
  text-align: center;
  background-color: #f1f4dc;
  border: 1px solid #e2e7c4;
  font-family: Montserrat, sans-serif;
}

.map-consent__pin {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #bc5;
}

.map-consent__address {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1f2e;
}

.map-consent__note {
  max-width: 340px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #5c5f4e;
}

.map-consent__note a {
  color: #1d1f2e;
  text-decoration: underline;
}

.map-consent__button {
  padding: 12px 26px;
  border: 0;
  background-color: #292929;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .2s ease;
}

.map-consent__button:hover {
  background-color: #bc5;
  color: #1d1f2e;
}

.map-consent__route {
  margin-top: 14px;
  font-size: 13px;
  color: #5c5f4e;
}

.map-consent__route a {
  color: #1d1f2e;
}

/* Der nachgeladene iframe soll den Container exakt so füllen wie vorher */
.embed-maps iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}
