.gallery-horizontal {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-horizontal::-webkit-scrollbar {
  height: 8px;
}

.gallery-horizontal::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 150px;
}

.gallery-item .overlay-wrapper {
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}


.gallery-horizontal {
  scroll-snap-type: x mandatory;
}

.gallery-item {
  scroll-snap-align: start;
}


.more-overlay {
  position: relative;
}

.more-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  border-radius: 10px;
}

.more-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 28px;
  font-weight: bold;
  z-index: 2;
}
