/************** Youtube wrapper **************/
.yt-wrapper { max-width: 560px; position: relative; }
.yt-preview {
  position: relative;
  cursor: pointer;
}
.yt-preview img { width: 100%; height: auto; display: block; }

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 63px;
  background: #ff0000;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  pointer-events: none; /* so click goes through to wrapper */
}
/* triangle inside button */
.yt-play-btn::before {
  content: "";
  display: block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.yt-privacy-note {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}
.yt-title {
  position: absolute;
  top: 0;              /* move to top */
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 8px 10px;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
}