.video-facade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--grey-900);
  cursor: pointer;
  border: none;
  width: 100%;
  overflow: hidden;
}

.video-facade::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background-color 0.2s ease;
}

.video-facade:hover::before {
  background-color: rgba(0, 0, 0, 0.15);
}

.video-facade__thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade__play {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  color: var(--white);
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
