/* Sötét bizalmi sáv: három oszlop, színes felső vonallal. */

.trust {
  position: relative;
  z-index: 1;
  background: var(--f-dark);
  color: var(--f-on-dark-strong);
}

.trust .section__head h2 {
  max-width: 18ch;
}

.trust__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 2px solid var(--f-mustard);
}

.trust__item:nth-child(2) {
  border-top-color: var(--f-coral);
}

.trust__item:nth-child(3) {
  border-top-color: var(--f-sky);
}

.trust__item h3 {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
}

.trust__item p {
  color: var(--f-on-dark);
  line-height: 1.55;
}

/* Négy elem: a felső színes vonal ismétlődik, hogy ne csússzon el a kiemelés. */
.trust__grid .trust__item:nth-child(4) {
  border-top-color: var(--f-mint);
}

.trust__grid .trust__item:nth-child(5) {
  border-top-color: var(--f-sky);
}
