/* General reset */

.container-mob {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Slider container */
.swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 50px; /* Space for pagination */
}

/* Swiper wrapper positioning */
.swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Individual slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.slider-item {
  width: 360px;
  height: 216px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 31px 117px; */
  padding: 30px;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 48px;
  box-sizing: border-box;
}

/* Image styles */
.slider-item img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Text styles */
.slider-item__name {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  height: auto;
  /* max-width: 200px;
  overflow-wrap: break-word; */
}

/* Square pagination */
.swiper-pagination {
  position: relative;
  bottom: auto;
  left: auto;
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #505561;
  border-radius: 0;
  opacity: 1;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background: #505561;
}

/* Autoplay progress */
.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .integration-item {
    width: 360px;
    height: 216px;
    padding: 31px 20px;
  }

  /* Ensure centering on mobile */
  .swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .container-mob {
    padding-left: 0;
    padding-right: 0;
  }
}
