.conveyor__items {
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.conveyor__item {
  scroll-snap-align: center;
  position: relative;
}

.conveyor__nav {
  display: contents;
}

.conveyor__prev,
.conveyor__next {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  padding: 2rem;
  font-weight: 200;
  font-family: var(--icons);
  background: var(--color-secondary-or-base-bg);
  color: var(--color-secondary-or-base-fg);
  transition: opacity 0.25s;
  &:hover {
    opacity: 0.75;
    color: inherit;
  }
}

.conveyor__next {
  justify-content: flex-start;
}

.conveyor__item--after-focus .conveyor__next {
  pointer-events: all;
}

.conveyor__item--before-focus .conveyor__prev {
  pointer-events: all;
}
