/* Cookie-Consent – Banner unten + Platzhalter für externe Inhalte. */
.mp-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: #fff; border-top: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -8px 30px rgba(0,0,0,.09);
  animation: mp-up .3s ease;
}
@keyframes mp-up { from { transform: translateY(100%); } to { transform: none; } }
.mp-consent-in {
  max-width: 1080px; margin: 0 auto; padding: 16px 22px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-family: 'Lato','Segoe UI',system-ui,Arial,sans-serif;
}
.mp-consent-txt { flex: 1; min-width: 260px; font-size: 13.5px; line-height: 1.6; color: #444; }
.mp-consent-txt a { color: #1e1e1e; text-decoration: underline; }
.mp-consent-btns { display: flex; gap: 10px; flex-shrink: 0; }
.mp-btn {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; border: 1px solid transparent; white-space: nowrap;
}
.mp-btn-primary { background: #16181d; color: #fff; }
.mp-btn-primary:hover { opacity: .88; }
.mp-btn-ghost { background: #fff; color: #444; border-color: #d5d5d5; }
.mp-btn-ghost:hover { border-color: #999; color: #16181d; }

@media (max-width: 600px) {
  .mp-consent-in { flex-direction: column; align-items: stretch; gap: 14px; }
  .mp-consent-btns { justify-content: stretch; }
  .mp-btn { flex: 1; }
}

/* Platzhalter für externe Inhalte (solange nicht zugestimmt). */
[data-consent] { position: relative; background: #f1f1ef; border-radius: 8px; overflow: hidden; }
.mp-embed-ask {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
  padding: 24px; color: #555;
  font-family: 'Lato','Segoe UI',system-ui,Arial,sans-serif;
}
.mp-embed-txt { font-size: 14px; line-height: 1.6; max-width: 44ch; }
.mp-embed-btn {
  padding: 10px 20px; border: none; border-radius: 999px; background: #16181d; color: #fff;
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.mp-embed-btn:hover { opacity: .88; }
[data-consent].is-loaded { background: none; }
[data-consent].is-loaded .mp-embed-ask { display: none; }

/* Platzhalter MIT Vorschaubild: Standbild (als Hintergrund am [data-consent]) +
   Play-Knopf mittig, dezenter Datenschutz-Hinweis unten. Klick lädt das Video. */
.mp-embed-poster {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; cursor: pointer;
  background: rgba(0,0,0,.18); transition: background .15s ease;
  font-family: 'Lato','Segoe UI',system-ui,Arial,sans-serif;
}
.mp-embed-poster:hover { background: rgba(0,0,0,.28); }
.mp-embed-play {
  border: 0; background: none; padding: 0; cursor: pointer; width: 74px; max-width: 22%;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.45)); transition: transform .15s ease;
}
.mp-embed-play svg { width: 100%; height: auto; display: block; }
.mp-embed-play .mp-play-bg { fill: #212121; opacity: .82; transition: fill .15s ease, opacity .15s ease; }
.mp-embed-poster:hover .mp-embed-play { transform: scale(1.06); }
.mp-embed-poster:hover .mp-embed-play .mp-play-bg { fill: #cc181e; opacity: 1; }  /* YouTube-Rot beim Hover */
.mp-embed-hint {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px;
  font-size: 11.5px; line-height: 1.4; color: #fff; text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
}
.mp-embed-hint strong { font-weight: 700; }
[data-consent].is-loaded .mp-embed-poster { display: none; }
