/* Reels */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  justify-content: center;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin: 0 auto; /* Center the video container */
  background: transparent; /* Ensure background is transparent */
}

.video-container iframe {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}