/* Market Autopilot trust-icons r1 — восстановление иконок блока преимуществ */
.trust-items .trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 28px 30px;
  text-align: left;
}

.trust-items .trust-icon {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #f0cb1d;
  border-radius: 17px;
  color: #171717;
  background: linear-gradient(145deg, #ffe458 0%, #ffd400 58%, #e8b300 100%);
  box-shadow: 0 10px 25px rgba(180, 137, 0, .17), inset 0 1px 0 rgba(255, 255, 255, .55);
  overflow: hidden;
}

.trust-items .trust-icon::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  right: -13px;
  bottom: -15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
}

.trust-items .trust-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-items .trust-copy {
  display: block;
  min-width: 0;
}

.trust-items .trust-copy > strong,
.trust-items .trust-copy > span {
  display: block;
}

.trust-items .trust-copy > strong {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.25;
  color: #171717;
}

.trust-items .trust-copy > span {
  color: var(--promo-muted, #667085);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .trust-items .trust-item {
    justify-content: center;
    padding: 30px 28px;
    text-align: left;
  }

  .trust-items .trust-copy {
    width: min(420px, calc(100% - 76px));
  }
}

@media (max-width: 700px) {
  .trust-items .trust-item {
    flex-direction: column;
    gap: 14px;
    padding: 29px 22px 30px;
    text-align: center;
  }

  .trust-items .trust-icon {
    flex-basis: 58px;
    margin: 0 auto;
  }

  .trust-items .trust-copy {
    width: 100%;
  }

  .trust-items .trust-copy > strong {
    font-size: 18px;
  }

  .trust-items .trust-copy > span {
    max-width: 430px;
    margin: 0 auto;
    font-size: 14px;
  }
}
