@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
.wp-block-video-youtube {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.wp-block-video-youtube:hover figure::before {
  background-color: rgba(0, 0, 0, 0.25);
}
.wp-block-video-youtube figure {
  aspect-ratio: 1000/540;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 2px;
  overflow: clip;
  display: block;
}
.wp-block-video-youtube figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  display: block;
}
.wp-block-video-youtube figure::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
  transition: all 0.24s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.wp-block-video-youtube .fake-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #FFF;
  box-shadow: 0 118px 33px 0 rgba(0, 0, 0, 0), 0 75px 30px 0 rgba(0, 0, 0, 0.01), 0 42px 25px 0 rgba(0, 0, 0, 0.05), 0 19px 19px 0 rgba(0, 0, 0, 0.09), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
}
.wp-block-video-youtube .fake-play-btn::before {
  content: "\eb0d";
  font-size: 24px;
  color: #0059AD;
  font-family: "icomoon";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
}
