.mc-trust {
  width: 100%;
  background: var(--mc-bg);
  padding: 72px 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.mc-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}

.mc-trust__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  opacity: 0.7;
}

.mc-trust__label {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mc-taupe);
  max-width: 240px;
}

@media (max-width: 768px) {
  .mc-trust {
    flex-wrap: wrap;
    padding: 48px 20px;
    gap: 48px 24px;
    justify-content: center;
  }
  .mc-trust__item {
    width: calc(50% - 12px);
  }
  .mc-trust__label {
    font-size: 15px;
    line-height: 1.6;
  }
}
