/* lite-yt.css — responsive 16:9 placeholder */
.lite-yt {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 14px auto;
  aspect-ratio: 16 / 9;
  background: #0f1115;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.lite-yt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.05));
}

.lite-yt .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.lite-yt .play button {
  border: 0;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lite-yt .play button:before {
  content: "";
  display: block;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-left: 18px solid #111;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.lite-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
