.video-wrapper {
  margin: 0 auto;
  position: relative;
  padding-right: 0.5rem; 
  padding-bottom: 0.5rem;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  position: relative;
  display: block;
  z-index: 0;
  width: 101%;
  background-color: #000;;
}
.video-placeholder.active {
  background-color: transparent;
}
.video-inner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  cursor: pointer;
}

.play-button {
  content: '';
  display: block !important;
  width: 49px;
  height: 49px;
  left: calc(50% - 24px) !important;
  top: calc(50% - 24px) !important;
  position: absolute;
  background-color: none;
  border: none;
  background-image: url('/wp-content/themes/ontic-v2/images/play-btn.svg');
}
.play-button:hover {
  background: none;
  border: none;
}
.play-icon {
  transition: transform 0.2s; /* transition-transform duration-200 */
}

.play-icon:hover {
  transform: translate(1px, 1px); /* hover:-translate-y-[2px] hover:translate-x-[1px] */
}
