/* ==========================================================================
   11-trust.css — Trust-mark strip (EST. 1910, PIC, 5 generations)
   ========================================================================== */

.trust-strip {
  background-color: var(--color-bone);
  padding-block: var(--space-48);
}

.trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 64px;
  padding-inline: var(--space-16);
  position: relative;
  text-align: center;
}

/* Vertical rule between marks */
.trust-mark + .trust-mark::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background-color: var(--color-green-muted);
}

.trust-mark__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dust);
  line-height: 1.4;
  margin-bottom: 4px;
}

.trust-mark__value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* EST. mark — stacked layout */
.trust-mark--est .trust-mark__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  font-variation-settings: 'opsz' 24, 'SOFT' 0, 'wght' 700;
  color: var(--color-ink);
}

/* Smaller text variants */
.trust-mark__value--sm {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Mobile: wraps and shrinks
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .trust-mark {
    width: 110px;
    height: 56px;
  }

  .trust-mark__value {
    font-size: 14px;
  }

  .trust-mark--est .trust-mark__value {
    font-size: 18px;
  }
}
