.hero-story {
    position: relative;
    margin: 0 auto;
}

.hero-story .story-wrapper {
    margin: 0 auto;
    position: relative;
    padding-right: 0.5rem; 
    padding-bottom: 0.5rem;
    width: 100%;
    height: 100%;
  }
  
.hero-story .video-placeholder {
    padding-bottom: 56.25%; 
    position: relative;
    display: block;
    z-index: 0;
}
.hero-story .video-placeholder.active {
    background-color: transparent;
 }
.hero-story .video-inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
 .hero-story .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
  border-radius: 4px;
  }
  
.hero-story .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    cursor: pointer;
    border-radius: 4px

}
.hero-story .video-thumbnail img {
  border-radius: 4px;
}
 
.hero-story .play-button {
    content: '';
    display: block !important;
    width: 48px;
    height: 48px;
    left: calc(50% - 24px) !important;
    top: calc(50% - 24px) !important;
    position: absolute;
    background-color: transparent;
    border: none;
    z-index: 2;
    background-image: url('orange-play.svg'); 
    transition: opacity 0.3s ease;
 }
.hero-story .play-button:hover {
    background: none;
    border: none;
    opacity: 0.8;
  }
.hero-story .story-title {
    position: absolute;
    bottom: 0;
    padding: 30px 16px 16px;
    text-align: left !important;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: none;
    z-index: 1;
    overflow: hidden;
}

.hero-story .story-title::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 71%, rgba(0, 0, 0, 0.00) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}
.hero-story .story-title h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 136%; /* 21.76px */
  letter-spacing: -0.32px;
}

@media screen and (max-width: 992px) {
  .hero-story .story-title {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero-story .play-button {
    width: 24px;
    height: 24px;
    left: calc(50% - 12px) !important;
    top: calc(50% - 12px) !important;
    background-size: contain;
  }
}