/* Klon-Nachrüstung: Platzhalter für die Google-Karte (Zwei-Klick) */
.klon-karte {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #e8e8e4;
  color: #1b1b1b;
  font-family: var(--wix-font-Body-M-family, "Wix Madefor Text", Helvetica, Arial, sans-serif);
  box-sizing: border-box;
}
.klon-karte__hinweis {
  max-width: 560px;
  padding: 36px 24px;
}
.klon-karte__adresse {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.klon-karte__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.klon-karte__text a {
  color: inherit;
  text-decoration: underline;
}
.klon-karte__knopf {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.klon-karte__knopf:hover,
.klon-karte__knopf:focus-visible {
  background: #fff;
  color: #1b1b1b;
}
.klon-karte__extern {
  margin: 16px 0 0;
  font-size: 13px;
}
.klon-karte__extern a {
  color: #444;
  text-decoration: underline;
}
.klon-karte iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Handy: Wix gibt dem Kartenabschnitt dort nur rund 150 px Höhe. Der Platzhalter
 * darf nicht höher werden, sonst schiebt er sich unter den nächsten Abschnitt und
 * der Knopf ist verdeckt (03.09.2026 gemessen). Deshalb ohne Adresse und Link. */
@media (max-width: 767px) {
  .klon-karte__hinweis {
    padding: 10px 16px;
  }
  .klon-karte__adresse,
  .klon-karte__extern {
    display: none;
  }
  .klon-karte__text {
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 10px;
  }
  .klon-karte__knopf {
    padding: 9px 20px;
    font-size: 11px;
  }
}
