.journey__content {
  height: 100%;
}

.journey-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.journey-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;

  background-image: 
    radial-gradient(
      rgba(var(--color-text-primary-rgb, 255,255,255), 0.5) 1px,
      transparent 1px
    );
  background-size: 30px 30px;
  background-repeat: repeat;

  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-composite: destination-in;
}

.journey-scroll {
  display: flex;
  /* gap: 80px; */
  padding: 100px 100px;
  margin-left: 10px;
  min-width: max-content;
  /* width: max-content; */
  scroll-snap-type: x mandatory;
  position: relative;
  align-items: center;
}

/* timeline bar */
.journey-scroll::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  height: 4px;
  background: var(--highlight-color);
  z-index: 0;
  transform: translateY(-50%);
}

/* dots */
.timeline-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--highlight-color);
  border-radius: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-dot.start {
  left: 0;
  transform: translate(-50%, -50%);
}

.timeline-dot.end {
  right: 0;
  transform: translate(50%, -50%);
}

.journey-wrapper::-webkit-scrollbar {
  height: 10px;
}
.journey-wrapper::-webkit-scrollbar-thumb {
  background: var(--highlight-color);
  border-radius: 5px;
}
