/* Zwei-Klick-Filme: Vorschaubild vom eigenen Hosting, YouTube erst nach dem Klick. */
.video-consent-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
  filter: saturate(0.92) brightness(0.82);
}

.video-consent-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: radial-gradient(ellipse at center, rgba(6, 24, 17, 0.35) 0%, rgba(6, 24, 17, 0.62) 100%);
}

.video-consent-play svg {
  width: clamp(48px, 9vw, 72px);
  height: auto;
  padding: 2px;
  border-radius: 50%;
  background: rgba(6, 24, 17, 0.28);
  backdrop-filter: blur(4px);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.25s ease, background-color 0.25s ease;
}

/* Viele Vorschaubilder tragen eigenen Titeltext; die Pille hält das Label lesbar. */
.video-consent-play span {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(6, 24, 17, 0.72);
  border: 1px solid rgba(110, 231, 183, 0.25);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease;
}

.video-consent-play:hover span,
.video-consent-play:focus-visible span {
  border-color: rgba(110, 231, 183, 0.6);
}

.video-consent-play:hover svg,
.video-consent-play:focus-visible svg {
  transform: scale(1.08);
  color: #6ee7b7;
  background: rgba(6, 24, 17, 0.5);
}

.video-frame-wrap:hover .video-consent-poster {
  transform: scale(1.025);
  filter: saturate(1) brightness(0.9);
}

.video-consent-play:focus-visible {
  outline: 2px solid #6ee7b7;
  outline-offset: -4px;
}

.video-consent-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #a7f3d0;
}

.video-consent-note a {
  color: #6ee7b7;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(110, 231, 183, 0.35);
  transition: border-color 0.2s ease;
}

.video-consent-note a:hover {
  border-bottom-color: #6ee7b7;
}

.video-consent.is-playing .video-consent-note {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .video-consent-poster,
  .video-consent-play svg {
    transition: none;
  }
}
