.story-video {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.story-video .header-video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.story-video .header-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("https://lofty.com/hubfs/play-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.story-video .header-play-btn:hover {
  opacity: 1;
}

.story-video:hover .header-play-btn {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .story-video {
    margin-bottom: 20px;
  }
  .story-video .header-video {
    max-height: 300px;
  }
  .story-video .header-play-btn {
    width: 60px;
    height: 60px;
  }
}
