.video-gallery {

    display: grid;

    grid-template-columns: repeat(3, 1fr); /* Adjusted to display three items on each row */

    grid-gap: 30px;

    max-width: 1100px;

    padding: 15px; 

    margin: 0 auto;

    box-sizing: border-box;

  }

  

  .video-gallery .gallery-item-caption {

    font-weight: 300;

    overflow: hidden;

    padding: 0;

    margin: 0;

    position: absolute;

    top: 20px; /* Adjust the top spacing as needed */

    left: 20px; /* Adjust the left spacing as needed */

    z-index: 1; /* Ensure the title is above the image */

  }

  .video_title {
  text-align : center;
  font-size : 14px;
  font-weight: bold;
  color : rgb(102, 99, 99);

  }

  .instagram-embed {
    height: 490px
  }

  .niveau_tag {
    font-size : 12px;
    color :rgb(94, 131, 211);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
  }


  @media screen and (max-width: 600px) {

    .video-gallery {

      grid-template-columns: 1fr; /* Display one item per row on smaller screens */

    }
  

    .video-gallery .gallery-item {

      width: 100%;

      padding-top: 100%; /* Making the gallery item square by setting height equal to width */

      margin-bottom: 15px; /* Add some space between rows */

    }

  }

  