.project-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  height: 300vh; /* 🔑 THIS is the trick */
}

.carousel-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding-top: 5vh;
}

.carousel-track {
  display: flex;
  gap: 300px;
  height: 80%;
  align-items: center;
}

.carousel-item {
  width: 50em;
  height: 40em;
  flex-shrink: 0;
}

#carousel-item-spacer {
  width: 18%;
}

body {
  overflow-x: hidden;
}

.carousel-item .info-tags {
    width: 100%;
    color: #DB2553;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 50px;
}

#carousel-first-item {
    margin-left: -15%;
}