.company-articles,
.company-articles * {
  box-sizing: border-box;
}

.company-articles {
  padding: 90px 0;
  overflow: hidden;
  color: #14161b;
  background: #f7f7f7;
  font-family: "Open Sans", Arial, sans-serif;
}

.company-articles__container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.company-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
}

.company-articles__title {
  margin: 0;
  color: #39393a;
}

.company-articles__navigation {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.company-articles__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  color: #1c2b39;
  background: #fff;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.company-articles__arrow:hover,
.company-articles__arrow:focus-visible {
  color: #fff;
  background: #0c9044;
  outline: none;
}

.company-articles__slider {
  margin-top: 36px;
  overflow: visible;
}

.company-articles__slide {
  height: auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  min-height: 594px;
  padding: 4px 4px 32px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
}

.news-card__media {
  position: relative;
  flex: 0 0 364px;
  height: 364px;
  overflow: hidden;
  border-radius: 12px;
}

.news-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 24px;
  padding: 3px 8px 4px;
  color: #14161b;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.01em;
}

.news-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 0 28px;
}

.news-card__title {
  margin: 0;
  overflow: hidden;
  color: #14161b;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-card__category {
  margin: 19.5px 0;
  color: rgba(20, 22, 27, 0.75);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.01em;
}

.news-card__category::before {
  content: "#";
  margin-right: 5px;
  font-weight: 600;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 34px;
  margin-top: 19.5px;
  color: #fff;
  background: #faa52c;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.news-card__link:hover,
.news-card__link:focus-visible {
  color: #fff;
  background: #0c9044;
  outline: none;
  text-decoration: none;
}

.company-articles--static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1099px) {
  .news-card__media {
    flex-basis: auto;
    height: auto;
    aspect-ratio: 422.6667 / 364;
  }

  .news-card {
    min-height: 0;
  }

  .company-articles--static .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .company-articles {
    padding: 48px 0;
  }

  .company-articles__header {
    align-items: flex-start;
  }

  .company-articles__title {
    padding-top: 4px;
  }

  .company-articles__slider {
    margin-top: 28px;
  }

  .news-card {
    gap: 24px;
    padding-bottom: 24px;
    border-radius: 14px;
  }

  .news-card__media {
    border-radius: 10px;
  }

  .news-card__date {
    top: 12px;
    left: 12px;
    font-size: 12px;
  }

  .news-card__body {
    padding: 0 20px;
  }

  .news-card__title {
    min-height: 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .news-card__category {
    margin-top: 14px;
    font-size: 14px;
    line-height: 19px;
  }

  .news-card__link {
    margin-top: auto;
  }

  .company-articles--static .swiper-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .company-articles--static .company-articles__slide {
    flex: 0 0 92%;
    scroll-snap-align: start;
  }
}

.how-we-work,
.how-we-work * {
  box-sizing: border-box;
}

.how-we-work {
  padding: 45px 0;
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
}

.how-we-work__container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

.how-we-work__header {
  text-align: center;
}

.how-we-work__title {
  margin: 0;
  color: #39393a;
}

.how-we-work__lead {
  max-width: 932px;
  margin: 16px auto 0;
  color: #717182;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.how-we-work__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.how-we-work__card {
  min-width: 0;
  min-height: 211px;
  margin: 0;
  padding: 32px;
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 16px;
}

.how-we-work__card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.how-we-work__icon {
  display: flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #0c9044;
  border-radius: 16px;
}

.how-we-work__icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.how-we-work__card-title-group {
  min-width: 0;
  padding-top: 1px;
}

.how-we-work__step {
  display: table;
  min-width: 56px;
  height: 26px;
  padding: 4px 10px;
  color: #39393a;
  background: #e4f5e5;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.how-we-work__card-title {
  margin: 8px 0 0;
  color: #39393a;
  font: 700 20px/24px "Open Sans", Arial, sans-serif;
}

.how-we-work__text {
  max-width: 334px;
  margin: 16px 0 0;
  color: #717182;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1023px) {
  .how-we-work__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .how-we-work__card {
    height: auto;
    min-height: 211px;
  }
}

@media (max-width: 767px) {
  .how-we-work {
    padding: 40px 0;
  }

  .how-we-work__lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 21px;
  }

  .how-we-work__list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .how-we-work__card {
    min-height: 0;
    padding: 24px;
    border-radius: 14px;
  }

  .how-we-work__card-head {
    gap: 14px;
  }

  .how-we-work__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .how-we-work__icon img {
    width: 24px;
    height: 24px;
  }

  .how-we-work__card-title-group {
    padding-top: 0;
  }

  .how-we-work__step {
    min-width: 52px;
    height: 22px;
    padding: 2px 8px;
  }

  .how-we-work__card-title {
    margin-top: 4px;
    font-size: 18px;
    line-height: 22px;
  }

  .how-we-work__text {
    max-width: none;
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
  }
}
