:is(main.ruckzuck) {
  .carousel-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .carousel {
    width: 100%;
    display: flex;
    overflow-y: hidden;
    flex-direction: column;
  }

  .carousel--delay {
    .carousel__group {
      animation-delay: -15s;
    }
  }

  .carousel__group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-bottom: 1em;
    flex-direction: column;
    animation: spin-vertical 56s linear infinite;
  }

  .carousel__item {
    width: 100%;
    /* height: 18rem; */
    padding: 0;
    background: lightgray;
    border-radius: var(--radius-xs);
  }

  .carousel__item:nth-child(2),
  .carousel__item:nth-child(5) {
    height: auto;
  }

  .carousel__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@keyframes spin-vertical {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
