/* YouTube Lite-Embed (DSGVO + Performance) */
.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  contain: content;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.yt-lite:hover, .yt-lite:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,245,255,.18), 0 10px 30px rgba(0,0,0,.4);
  outline: 2px solid rgba(0,245,255,.5);
  outline-offset: 4px;
}
.yt-lite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 70%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
  transition: opacity .25s ease;
}
.yt-lite:hover .yt-lite-overlay { opacity: .65; }
.yt-lite-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  transition: transform .2s ease;
}
.yt-lite:hover .yt-lite-play { transform: scale(1.1); }
.yt-lite-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-lite.yt-lite-active {
  background: #000;
}
.yt-lite.yt-lite-active .yt-lite-overlay,
.yt-lite.yt-lite-active .yt-lite-play,
.yt-lite.yt-lite-active .yt-lite-title { display: none; }
.yt-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
