.video-responsive-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 450px !important; /* Fixed height - adjust as needed, !important to override */
}

.video-responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.description-scroll-container {
  max-height: 150px; /* Adjust as needed */
  overflow-y: auto; /* Add scrollbar if content exceeds max-height */
  padding-right: 10px; /* Add some padding so scrollbar doesn't overlap text */
} 