.stories {
  position: relative;
  padding: var(--sp) 0;
}

.stories__container {
  position: relative;
  z-index: 2;
}

.stories__items {
  margin-top: 40px;
}

.stories__items .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stories__items .item:not(:first-child) {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #424242;
}

.stories__items .item__content {
  max-width: 378px;
  padding-top: 125px;
}

.stories__items .item__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
}

.stories__items .item__text {
  margin-top: 24px;
  color: #B7B7B7;
  line-height: 160%;
  font-size: var(--m);
}

.stories__items .item__col {
  max-width: 709px;
}

.stories__items .item__col img {
  display: block;
  width: 100%;
  height: auto;
}

.stories__items .item__info {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 24px;
}

.stories__items .item__info-col {
  width: 176px;
}

.stories__items .item__info-title {
  font: 46px/112% var(--heading-font-family);
  color: var(--primary);
}

.stories__items .item__info-text {
  margin-top: 10px;
  font-size: var(--m);
  color: var(--grey);
  line-height: 160%;
}

.stories .swiper__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.stories .swiper-button-prev,
.stories .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 40px;
  height: 40px;
  margin-top: 0;
  transition: var(--transition);
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='19.5' transform='matrix(-1 0 0 1 40.0007 0)' stroke='%23BABABC'/%3E%3Cpath d='M28.7109 19.1796C29.0038 19.4725 29.0038 19.9474 28.7109 20.2403L23.938 25.0133C23.6451 25.3062 23.1702 25.3062 22.8773 25.0133C22.5844 24.7204 22.5844 24.2455 22.8773 23.9526L27.1199 19.71L22.8773 15.4673C22.5844 15.1744 22.5844 14.6996 22.8773 14.4067C23.1702 14.1138 23.6451 14.1138 23.938 14.4067L28.7109 19.1796ZM9.99878 18.96L28.1806 18.96V20.46L9.99878 20.46V18.96Z' fill='%23BABABC'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

.stories .swiper-button-prev::after,
.stories .swiper-button-next::after {
  display: none;
}

.stories .swiper-button-prev {
  transform: rotate(180deg);
}

.stories__pitchili {
  top: 25%;
  width: 1018px;
  left: -49%;
  transform: scale(1, -1) rotate(66.72deg) translate3d(0, 0, 0);
}

@media (max-width: 1260px) {
  .stories__items .item__content {
    padding-top: 0;
  }

  .stories__items .item__col {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .stories__items .item:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
  }

  .stories__items .item__title {
    font-size: 24px;
  }

  .stories__items .item__text {
    margin-top: 15px;
  }

  .stories__items .item__info {
    gap: 20px;
  }

  .stories__items .item__info-col {
    width: calc((100% - 40px) / 3);
  }

  .stories__items .item__info-title {
    font-size: 30px;
  }

  .stories__items .item__info-text {
    margin-top: 0;
    font-size: 14px;
  }

  .stories .swiper__nav {
    margin-top: 30px;
  }
}