/* Ersatz fuer eingebettete fremde Inhalte (YouTube, Google Maps) */
.sicher-video-link,
.sicher-karte {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
}
.sicher-video-link {
  aspect-ratio: 16 / 9;
  flex-direction: column;
  background: #2b2724 linear-gradient(135deg, #3a3430, #1f1c1a);
  color: #fff;
}
.sicher-video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.sicher-video-play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #2b2724;
}
.sicher-video-text {
  font-size: 17px;
  letter-spacing: 0.1px;
}
.sicher-video-link:hover .sicher-video-play { transform: scale(1.06); }

.sicher-karte {
  min-height: 300px;
  padding: 24px;
  background: #f1ede9;
  color: #5a544d;
  text-align: left;
  line-height: 1.6;
}
.sicher-karte-pin {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #b98b73;
  position: relative;
}
.sicher-karte-pin::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #f1ede9;
}
.sicher-karte:hover strong { text-decoration: underline; }

/* Kartenbild auf der Kontaktseite */
.sicher-karte-bild {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
}
.sicher-karte-bild img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.sicher-karte-bild:hover img { transform: scale(1.02); }
.sicher-karte-schild {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 10px rgba(90, 84, 77, 0.18);
  color: #5a544d;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}
.sicher-karte-schild strong { color: #b98b73; }
.sicher-karte-bild:hover .sicher-karte-schild strong { text-decoration: underline; }
.sicher-karte-quelle {
  margin-top: 6px;
  font-size: 11px;
  color: #9a9ea3;
  text-align: right;
}
.sicher-karte-quelle a { color: inherit; }
@media (max-width: 600px) {
  .sicher-karte-bild img { height: 340px; }
  .sicher-karte-schild { left: 10px; right: 10px; bottom: 10px; }
}

/* Neue Datenschutzerklaerung – gleicher Karten-Stil wie die Blogbeitraege */
.ds-seite {
  margin: 50px -15px 0;
  padding: 50px 40px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 8px -5px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.ds { max-width: 860px; margin: 0 auto; color: #7a7e83; font-size: 17px; letter-spacing: 0.1px; line-height: 1.65; }
.ds h1 { color: #5a544d; margin: 0 0 6px; }
.ds h2 { color: #5a544d; font-size: 1.35em; margin: 2.2em 0 0.6em; }
.ds p, .ds li { color: #7a7e83; font-size: 17px; }
.ds ul { padding-left: 24px; list-style: disc; margin: 0 0 1em; }
.ds li { margin-bottom: 0.35em; }
.ds a { color: #b98b73; }
.ds strong { color: #5a544d; font-weight: 500; }
.ds-stand { font-size: 14px !important; color: #9a9ea3 !important; margin-bottom: 28px; }
.ds-kurz, .ds-hinweis {
  background: #faf8f6;
  border-left: 3px solid #b98b73;
  border-radius: 10px;
  padding: 22px 26px 10px;
  margin: 0 0 10px;
}
.ds-kurz h2 { margin-top: 0; font-size: 1.15em; }
.ds-hinweis { padding-bottom: 6px; margin: 1em 0; }
.ds-adresse { padding-left: 16px; border-left: 2px solid #ece6e0; }
@media (max-width: 767px) {
  .ds-seite { margin: 30px -10px 0; padding: 30px 20px 24px; }
  .ds, .ds p, .ds li { font-size: 16px; }
}
