.video-gallery {
  background: #f9fafb;
}

.video-card {
  cursor: pointer;
  background: #e5989b;
  padding-bottom: 20px;
  border-radius: 22px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.video-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Play Icon */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  background: rgb(0 0 0 / 19%);
  transition: 0.3s ease;
}

.play-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.video-thumb:hover .play-icon {
  background: rgba(0, 0, 0, 0.6);
}

.video-title {
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
