.guarantee-block {
  padding: 0;
  color: black;
}

.guarantee-block__header-wrapper {
  margin-bottom: 40px;
}

.guarantee-block__header {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.guarantee-block__subheader {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  max-width: 544px;
}
.guarantee-block__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

/* --- Сетка --- */

.guarantee-block__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
}

.guarantee-block__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 32px 48px 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.guarantee-block__icon img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.guarantee-block__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
}

.guarantee-block__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

/* --- Адаптив --- */

@media (max-width: 991px) {
  .guarantee-block__header-wrapper {
    margin-bottom: 16px;
  }
  .guarantee-block__header {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .guarantee-block__subheader {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
  }

  .guarantee-block__list {
    grid-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-block__item {
    border-bottom: none;
    padding: 0;
  }
}

@media (max-width: 575px) {
  .guarantee-block__list {
    grid-template-columns: 1fr;
  }

  .guarantee-block__item {
    border-bottom: none;
  }
}
