/* =video-overlay block
*/
.block-video-overlay {
  position: relative;
}

.block-video-overlay.aligncenter {
  text-align: center; /* Center content instead of using flex */
  margin-left: auto;
  margin-right: auto;
}

.block-video-overlay .wp-block-image {
  position: relative;
}
.block-video-overlay .wp-block-image img {
  margin-left: auto;
  margin-right: auto;
}

.block-video-overlay .wp-block-heading {
  position: absolute;
  bottom: var(--wp--custom--layout--padding-xlarge);
  text-align: center;
  color: var(--wp--preset--color--white);
  text-shadow: rgba(0,0,0,.5) 1px 0 10px;
  text-align: center;
  width: 100%;
}

.block-video-overlay svg {
  fill: var(--wp--preset--color--white);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -35px;
  margin-top: -35px;
  z-index: 10;
  cursor: pointer;
}

.block-video-overlay:hover svg {
  opacity: 0.7;
}

/* Make sure video takes full width */
.block-video-overlay video {
  width: 100%;
  height: auto;
}
