.video-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
}

.video-thumbnail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 180ms ease;
}

.video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(16, 20, 24, 0.72);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.video-play-button > span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.video-thumbnail:hover::after,
.video-thumbnail:focus-visible::after {
  background: rgba(0, 0, 0, 0.04);
}

.video-thumbnail:hover .video-play-button,
.video-thumbnail:focus-visible .video-play-button {
  background: #e85d24;
  transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 767px) {
  .video-play-button {
    width: 48px;
    height: 48px;
  }

  .video-play-button > span {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 13px;
  }
}
