.wp-block-embed.is-style-top-bleed {
  margin-top: -225px;
}
.wp-block-embed.is-style-bottom-bleed {
  margin-bottom: -196px;
}
.wp-block-embed.is-style-bottom-bleed:is(:last-child) {
  margin-bottom: -196px;
}
.wp-block-embed-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto 24px;
}
.wp-block-embed__thumbnail {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.75s linear;
}
.wp-block-embed__thumbnail:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 75px;
  height: 50px;
  border-radius: 11px;
  background: linear-gradient(to bottom, black 0%, black 100%);
  pointer-events: none;
}
.wp-block-embed__thumbnail:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 22px;
  border-color: transparent transparent transparent white;
  pointer-events: none;
}
.wp-block-embed__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.wp-block-embed__wrapper {
  position: relative;
  padding: 56.6% 0 0;
}
.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}
