.infiniteloop-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.infcarousel-track-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.infcarousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.infcarousel-item {
  flex: 0 0 auto;
  background: #eee;
  text-align: center;
  font-size: 2rem;
  border-radius: 8px;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0; /* verhindert angeschnittene Lücken */
}

.infprev,
.infnext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #14693c;
  background: transparent;
  border: 1px solid #14693c;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
}

.infprev { left: 5px; }
.infnext { right: 5px; }

@media screen and (min-width: 1280px) {
  .infprev { left: -52px; }
  .infnext { right: -52px; }
}