.horizontal-scroll-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.horizontal-scroll-section .swiper-slide img {
      display: block;
      object-fit: unset;
      width: auto;
      height: unset;
      margin: 24px auto;
}

.horizontal-scroll-section .swiper-slide
{
  transition: all 0.8s ease-in-out;
}

.horizontal-scroll-section .swiper-slide:hover {
  transform: scale(1.05);
}

.scroll-track {
  display: flex;
  height: 100%;
  justify-content: center;
}

.scroll-item img {
    display: block;
}

.content-button {
    margin-top: 24px;
}

.content-button .wp-block-buttons .wp-block-button.is-style-outline>.wp-block-button__link {
    font-size: 0.875rem;
}

.timeline-progress {
  position: relative;
  height: 40px;
  margin-top: 40px;
}

.swiper-slide::after {
  content: '➔'; /* alternativt använd background-image med SVG */
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #ccc;
  pointer-events: none;
}

.swiper-slide:last-child::after {
  display: none;
}