.video {
  color: rgba(var(--color-text));
  background-color: rgb(var(--color-background));
}
.video-box {
  position: relative;
}
.video .block-heading {
  width: 100%;
}
.video .theme-video-media__poster {
  background-color: rgb(243 243 243 / 100%);
}
.video theme-video-media {
  height: 100%;
}
.video__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: rgba(var(--color-text));
  background-color: rgba(var(--color-background), 0.85);
}
.video__content-text-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.video__content-text-mask-deep {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(0 0 0 / 30%) 59.64%,
    rgb(0 0 0 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}
.video__content-text-mask-light {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(255 255 255 / 30%) 59.64%,
    rgb(255 255 255 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}
.video__play-button {
  width: var(--size);
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  aspect-ratio: 1;
  color: rgb(var(--color-button-text));
}
.video__play-button svg {
  width: 100%;
  height: 100%;
}
