.video-facade {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.video-facade img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.video-facade:hover img {
  opacity: 0.85;
}

.play-button {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
}

.video-facade:hover .play-button {
  background-color: rgba(180, 60, 60, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-facade.loading .play-button {
  background-color: rgba(0, 0, 0, 0.7);
  animation: pulse 1s infinite;
}

.video-facade.loading .play-button::before {
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.video-vertical video {
  width: 100%;
  display: block;
  background: #000;
}

/*# sourceMappingURL=video-block.css.map */
