.video {
  position: relative;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 14%), 0 2px 3px -1px rgb(0 0 0 / 8%) !important;
  border-radius: 8px;
  margin-bottom: 30px !important;
  background-color: #000;
}
.video__preview {
  border-radius: 8px;
  display: block;
  opacity: 0.8;
  transition: 0.15s opacity ease-in-out;
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: left;
}
.video:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    136deg,
    rgb(2 0 36 / 1%) 50%,
    rgb(179 6 57 / 20%) 100%
  );
  border-radius: 8px;
}

.video__icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.video:hover {
  transform: scale(1.05);
}
.video:hover .video__preview {
  opacity: 1;
}
