.slideshow-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;   /* 👈 space between rows */
  }

.slideshow {
    width: 80%;
    height: 310px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  
   .track {
    /* The tracks that are all square images */
    display: flex;
    gap: 12px;
    height: 100%;
    width: max-content;
    animation: scroll 28s linear infinite;

  }
 
  .track2 {
    /* The track that has square and rectangular images */
    display: flex;
    gap: 12px;
    height: 100%;
    width: max-content;
    animation: scroll 68s linear infinite;
  }


  .slide {
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border-color: var(--orange);
    border-width: 5px;
    border-style: solid;
  }

  .slide-r {
    width: 450px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-r img {
    width: 450px;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border-color: var(--orange);
    border-width: 5px;
    border-style: solid;
  }
  


  /* Continuous animation */
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  /* Pause on hover */
  .slideshow:hover .track {
    /* animation-play-state: paused; */
  }

  @media(max-width:600px){
    .slideshow {
      width: 90%;
      height: 350px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }

  }