.alu-video-facade {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}
.alu-video-poster,
.alu-video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.alu-video-play,
.alu-video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  font: inherit;
  text-align: center;
  cursor: pointer;
}
.alu-video-play[hidden],
.alu-video-fallback[hidden] { display: none; }
.alu-video-play-icon { font-size: 2.5rem; }
.alu-video-play:hover,
.alu-video-fallback:hover { color: #fff; background: rgba(0, 0, 0, 0.8); }
.alu-video-play:focus-visible,
.alu-video-fallback:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
