.ib-video-lite {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--ib-video-ratio, 1.7777778);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-sizing: border-box;
}

.ib-video-lite > img.ib-video-lite__thumb {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover;
  object-position: center center;
  border: 0;
}

.ib-video-lite__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.92);
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
  pointer-events: none;
}

.ib-video-lite__triangle {
  position: absolute;
  left: 27px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.ib-video-lite__hint {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font: 600 12px/1.2 Arial, Helvetica, sans-serif;
  pointer-events: none;
}

.ib-video-lite:hover .ib-video-lite__play,
.ib-video-lite:focus .ib-video-lite__play {
  transform: translate(-50%, -50%) scale(1.04);
}

.ib-video-lite:focus {
  outline: 3px solid rgba(0, 91, 187, .7);
  outline-offset: 2px;
}

.ib-video-lite--loaded {
  cursor: default;
}

.ib-video-lite--loaded:focus {
  outline: none;
}

.ib-video-lite__iframe {
  display: block;
}
