@media only screen and (min-width: 200px) {
  .video-item {
    width: 100%; /* Full width on smaller screens */
    margin: 0 0 35px;
    background-color: #dfecf3;
  }
  .video-item iframe {
    width: 100%;
    height: 210px; /* Adjust as needed */
    border: none;
  }
  .video-item .video_description {
    padding: 9px 5px;
  }
  .video-item .video_description p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
}
@media only screen and (min-width: 400px) {
  .video-item iframe {
    height: 260px;
  }
}

@media only screen and (min-width: 600px) {
  .video-item {
    margin: 0 0 50px;
    box-shadow: 5px 6px 8px #00000042;
    border-radius: 8px;
    overflow: hidden;
  }
  .video-item iframe {
    height: 330px;
  }
  .video-item .video_description {
    padding: 9px 9px;
  }
  .video-item .video_description p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 710px) {
  .video-item iframe {
    height: 360px;
  }
}
@media only screen and (min-width: 768px) {
  .video-item {
    width: 47%;
  }
  .video-item iframe {
    height: 230px;
  }
}
@media only screen and (min-width: 820px) {
  .video-item {
    width: 48%;
  }
}
@media only screen and (min-width: 912px) {
  .gallery.video_gallery {
    gap: 20px;
  }
  .video-item iframe {
    height: 240px;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery.video_gallery {
    gap: 27px;
  }
  .video-item iframe {
    height: 260px;
  }
}
@media only screen and (min-width: 1280px) {
  .video-item {
    width: 31%;
  }
  .gallery.video_gallery {
    gap: 35px;
  }
  .video-item iframe {
    height: 260px;
  }
}
