.our_sucess_stories_section {
  padding: 0px 20px;
  text-align: center;
}

.our_sucess_stories_title {
  font-size: 24px;
  margin-bottom: 20px;
}

.our_sucess_stories_title span {
  color: #6c3ef8;
}

.our_sucess_stories_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.our_sucess_stories_track {
  --gap: 15px;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.our_sucess_stories_track::-webkit-scrollbar {
  display: none;
}

/* show 4 cards on desktop */
.our_sucess_stories_card {
  flex: 0 0 calc((99.4% - var(--gap) * 2) / 4);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}

/* crop Instagram header */
.our_sucess_stories_player {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: 16px;
}
.our_sucess_stories_player iframe {
  position: absolute;
  top: -60px; /* crop Instagram header */
  left: 50%;
  transform: translateX(-50%);
  width: 143%; /* wider than container */
  height: 550px; /* taller so it fills without black bars */
  border: 0;
}

.our_sucess_stories_tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #e74c3c;
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}

/* nav buttons */
.our_sucess_stories_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  padding: 5px 14px 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
.our_sucess_stories_prev {
  left: -3.5%;
}
.our_sucess_stories_next {
  right: -3.5%;
}
.our_sucess_stories_nav:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* responsive: 2 cards tablet, 1 card mobile */
@media (max-width: 991px) {
  .our_sucess_stories_card {
    flex: 0 0 calc((100% - var(--gap)) / 2);
  }
}
@media (max-width: 640px) {
  .our_sucess_stories_card {
    flex: 0 0 100%;
  }
  .our_sucess_stories_player {
    height: 420px;
  }
}
