.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  pointer-events: none;
}
.video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
}
.video-btn-container {
  position: absolute;
  top: auto;
  bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 0.25rem;
  padding-inline: 1rem;
}
.video-container .video-overlay button {
  background: transparent;
  outline: none;
}

.video-container .video-overlay button i {
  color: #eee;
  mix-blend-mode: exclusion;
  width: 3rem;
  height: 3rem;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .video-btn-container {
    top: 1.5rem;
  }
  .video-container .video-overlay button i {
    width: 2rem;
    height: 2rem;
  }
}

.plyr iframe[id^="youtube"] {
  top: -100%;
  height: 300%;
}
