.two-click-content-wrapper {
  max-width: 1200px;
  width: 500px;
  height: 600px;
  margin: 0 auto;
  background: url(../img/platzhalter_apothekenfinder.png) #ebe8e0 no-repeat;
  background-size: cover;
}

/* Container für Hinweistext oder Karte */
.two-click-content {
  position: relative;
  display: flex;                /* Zentrierung aktivieren */
  align-items: center;          /* vertikal */
  justify-content: center;      /* horizontal */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Bilder (z. B. Vorschaubild, falls später wieder verwendet) */
.two-click-content img {
  width: 100%;
  height: auto;
}

/* Eingebettete Inhalte (z. B. Karte im iframe) */
.two-click-content iframe,
.two-click-content object,
.two-click-content embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hinweistext mittig über Hintergrund */
.two-click-content .hinweistext {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  text-align: center;
  padding: 25px;
  line-height: 1.4;
  max-width: 700px;
  width: calc(100% - 50px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin: 0 auto;
  display: block; /* direkt sichtbar */
}

/* Links und Buttons */
.two-click-content a {
  text-decoration: underline;
}

.two-click-content a.button {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  background: #ff0000;
  color: #fff !important;
  border-radius: 0;
  padding: 10px 30px;
  display: inline-block;
  border: 0;
  margin: 20px auto 0 auto;
  cursor: pointer;
  width: auto;
  text-decoration: none;
}

.two-click-content a.button:hover {
  color: #ff0000 !important;
  background: #fff;
}

/* Checkbox-Bereich */
.checkbox-wrapper {
  padding-top: 1rem;
}

/* Entfernt den alten weißen Klick-Button */
.two-click-content span.btn-open-hinweistext,
.two-click-content span.btn-open-hinweistext i {
  display: none !important;
}

/* Mobile Styles */
@media only screen and (max-width: 479px) {
  .two-click-content-wrapper {
    width: 100%;
    height: auto;
  }

  .two-click-content {
    padding: 30px 0px;
    box-sizing: border-box;
  }

  .two-click-content .hinweistext {
    font-size: 13px;
    padding: 15px;
    width: 90%;
    box-sizing: border-box;
  }
}
