.bbd-home-video {
  display: block !important;
  width: min(100%, 1080px);
  margin: 32px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.bbd-home-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.bbd-home-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.bbd-home-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(0,0,0,.42);
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease;
}

.bbd-home-video__play:hover,
.bbd-home-video__play:focus-visible {
  background: rgba(0,0,0,.62);
}

.bbd-home-video__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 30px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #fff;
}

.bbd-home-video.is-playing .bbd-home-video__play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bbd-home-video {
    margin: 20px auto;
    padding: 0;
  }
  .bbd-home-video__play {
    width: 64px;
    height: 64px;
  }
  .bbd-home-video__play span {
    margin-left: 25px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }
}
