/******* Do not edit this file *******
Code Snippets Manager
Saved: Mar 10 2026 | 13:04:37 */
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7777777778;
  cursor: pointer;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.video-facade:hover img {
  opacity: 0.8;
}
.play-button {
  position: absolute;
  width: 70px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12%;
  transition: background-color 0.2s;
}
.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}
.video-facade:hover .play-button {
  background-color: #ff0000;
}
