/* css/lite-youtube.css */
.lite-youtube {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  contain: content;
}
.lite-youtube::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.lite-youtube .ly-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 48px; border-radius: 14%;
  background: rgba(33,33,33,0.9);
  transition: background 0.2s, transform 0.2s;
}
.lite-youtube .ly-play::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  border-left: 18px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.lite-youtube:hover .ly-play { background: #ff0000; transform: translate(-50%,-50%) scale(1.04); }
.lite-youtube:focus-visible { outline: 3px solid var(--accent, #ff7a00); outline-offset: 2px; }
