div:has(.video-container) {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-container {
  display: flex;
  flex-direction: row;
}

.video-wrapper {
  width: 66%; /* Adjust the width as needed */
}

video {
  width: 100%;
  height: auto;
  
  border: 1px solid #888;
}

@media (max-width: 768px) {
  .video-wrapper {
    width: 100%;    
  }
}