  .video-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
  }

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
        .category {
            margin: -20px 20px 20px 20px;
            padding: 0px;
            padding-top:10px;
            max-width: 1024px;
            background-color: #FFF;
            font-size: 18px;
            line-height: 1.8;
            
        }
        
        .video-overlay {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  color: white;
  padding: 6px 10px;
  font-size: 10px;
  
  font-family: sans-serif;
  border-radius: 4px;
  z-index: 1; /* Makes sure it's on top of the video */
  pointer-events: none; /* So it doesn't interfere with clicks */
}

.video-overlay {
  pointer-events: none;
}

.video-overlay a {
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
}