/* ───── KARAFT trust-bar (Prestige Allure clone) ─────
   Row of trust items: centered icon, bold uppercase label, small description.
   Optional thin top/bottom borders. 4 → 2 → 1 columns. */

.kf-trust { padding: clamp(40px, 5vw, 64px) 0; }

.kf-trust__head {
  text-align: center;
  margin-bottom: 40px;
}
.kf-trust__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: var(--track-heading, 0.16em);
  text-transform: uppercase;
  margin: 16px 0 0;
}

.kf-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.kf-trust__grid--bordered {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(32px, 4vw, 48px) 0;
}

.kf-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kf-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-text);
}
.kf-trust__icon .icon {
  width: 26px;
  height: 26px;
}

.kf-trust__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: var(--track-heading, 0.16em);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.kf-trust__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 28ch;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .kf-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}
@media (max-width: 420px) {
  .kf-trust__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kf-trust__desc { max-width: none; }
}
