.post-video-wrapper {
  position: relative;
  overflow: hidden;
}

.post-video-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  line-height: 0;
}

.video-play-button__svg {
  display: block;
  width: clamp(56px, 8vw, 92px);
  height: auto;
}

.post-video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
