.carousel-container {
  position: relative;
}

.carousel {
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 4em;
  cursor: pointer;
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 35%
  );
  /* opacity: 0;
  z-index: -1; */
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-btn svg {
  margin: 1.25em;
}
