.stories-section {
  margin: 120px auto;
  max-width: 1264px;
  padding: 0 32px;
}

.story-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.story-head .h3 {
  margin-bottom: 48px;
}

.story-body {
  margin-top: 48px;
  display: unset;
}

.story-item {
  display: flex;
  gap: 80px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E5E7EB;
}
.story-item:last-child {
  border-bottom: unset;
  padding: 0;
  margin: 0;
}

.story-item-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.story-item-right {
  display: flex;
  gap: 16px;
  min-width: 360px;
}

.story-photo {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-position {
  margin: 4px 0;
  color: #6B7280;
}

.stories-nav {
  display: none;
}

@media (max-width: 768px) {
  .stories-section {
    padding: 0 16px;
    margin: 64px 0;
  }
  .story-body {
    display: flex;
    margin-top: 24px;
  }
  .swiper-navs {
    width: 72px;
    min-width: 72px;
    height: 32px;
    position: relative;
  }
  .swiper-button-prev {
    left: unset;
    top: 0;
    margin-top: unset;
  }
  .swiper-button-next {
    right: 0;
    top: 0;
    margin-top: unset;
  }
  .swiper-button-prev:after, .swiper-button-next:after {
    display: none;
  }
  .stories-nav {
    display: flex;
  }
  .swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #D1D5DB;
    border-radius: 50%;
  }
  .swiper-nav svg {
    height: 10px;
    width: 6px;
  }
  .swiper-button-prev svg {
    transform: rotate(180deg);
  }
  .story-head .h3 {
    margin-bottom: unset;
  }
  .story-item {
    flex-direction: column-reverse;
    gap: 16px;
    margin: 0;
    padding: 0;
    border-bottom: unset;
  }
  .story-swiper {
    overflow: unset;
  }
}