.youtube-video {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.youtube-video img {
  display: block;
  width: 100%;
  height: auto;
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-color: #dc3232;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 1;
}

.youtube-play-btn:before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

.youtube-video:hover .youtube-play-btn {
  background-color: #ff0000;
}

.youtube-active {
  overflow: hidden;
}

.youtube-active iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
