/* ===========================
   DSGVO-Overlay (.video-wall)
   =========================== */

/* Overlay liegt über dem Video und nutzt Flex-Layout */
.wp-block-embed__wrapper > .video-wall {
  position: absolute;
  inset: 0;
  box-sizing: border-box;

  font: 400 1em/1.46 Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #eee;
  border: 15px solid #555;
  padding: 1em;

  z-index: 2;

  display: flex;           /* vertikale Aufteilung */
  flex-direction: column;  /* oben Text, unten Footer (last-wrapper) */
}

/* Überschrift im Overlay */
.video-wall strong {
  display: block;
  text-align: center;
  font-size: 1.1em;
  margin: 0 0 0.5em;
}

/* Der lange Hinweis-Text-Bereich über dem Footer:
   – bekommt den Scrollbalken
   – NICHT für #last-wrapper anwenden */
.video-wall div:not(#last-wrapper) {
  flex: 1 1 auto;
  overflow-y: auto;
  width: 100%;
}

/* Fließtext im Scrollbereich */
.video-wall p {
  font-size: 0.8em;
  margin: 0 0 1em;
}

/* Links erben die Textfarbe */
.video-wall a {
  color: inherit;
  text-decoration: underline;
}

/* Unterer Bereich: Link + Button immer sichtbar */
#last-wrapper {
  flex-shrink: 0;                      /* nicht zusammendrücken */
  margin-top: 0.75em;
  padding: 0.75em 1em;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #ccc;

  display: flex;
  position: relative;
  top: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

/* Link im Footer */
#last-wrapper .video-link {
  font-size: 0.8em;
  text-align: center;
  margin: 0;
}

/* Button zum Abspielen – unter dem Link, zentriert */
#last-wrapper button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #eee;
  font: 700 0.8em/1.2 Helvetica, Arial, sans-serif;

  display: block;
  width: 11.5em;
  height: 4.25em;
  border: 0 none;
  border-radius: 0.75em;
  padding: 0 0 0 5.5em;
  text-align: left;
  margin: 0;

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath fill='%23eee' d='M11.109 17.625l7.562-3.906-7.562-3.953v7.859zM14 4.156c5.891 0 9.797 0.281 9.797 0.281 0.547 0.063 1.75 0.063 2.812 1.188 0 0 0.859 0.844 1.109 2.781 0.297 2.266 0.281 4.531 0.281 4.531v2.125s0.016 2.266-0.281 4.531c-0.25 1.922-1.109 2.781-1.109 2.781-1.062 1.109-2.266 1.109-2.812 1.172 0 0-3.906 0.297-9.797 0.297v0c-7.281-0.063-9.516-0.281-9.516-0.281-0.625-0.109-2.031-0.078-3.094-1.188 0 0-0.859-0.859-1.109-2.781-0.297-2.266-0.281-4.531-0.281-4.531v-2.125s-0.016-2.266 0.281-4.531c0.25-1.937 1.109-2.781 1.109-2.781 1.062-1.125 2.266-1.125 2.812-1.188 0 0 3.906-0.281 9.797-0.281v0z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat 1em center #666;
  background-size: 3.5em;
  transition: background-color 0.3s;
}

/* Hover-Zustand des Buttons */
#last-wrapper button:hover {
  background-color: #444;
}


.video-wall {
  width: 100% !important;
  max-width: 900px;
  height: auto !important;
  margin: 0 auto; /* Sicherheit: Box selbst auch noch mittig */
}

/* ===========================
   Responsive Video-Wall Größe
   =========================== */

/* Desktop */
.video-wall {
  width: 100% !important;
  max-width: 900px;
  height: auto !important;
  margin: 0 auto;
}

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .video-wall {
    max-width: 700px;
  }
}

