/* Hero Neu Component Specific Styles */

/* Video container styling */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video thumbnail hover effects */
.video-thumbnail {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail a {
  /* position: relative; */
  /* transition: all 0.3s ease; */
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 
.video-thumbnail:hover a {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
} */

/* Add overlay for better text readability */
.video-thumbnail::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1; */
}

/* Play button animation */
.video-thumbnail .play-icon {
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  transform: scale(1.1);
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
  .video-thumbnail a {
    transform: scale(0.9);
  }

  .video-thumbnail:hover a {
    transform: scale(1);
  }
}
