/* Trust Badges – 2×2, uitgelijnd op container */

.trust-badges {
  font-family: var(--font-inter, 'Inter', sans-serif);
}

.trust-badges .container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .trust-badges .container-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .trust-badges .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1.25rem;
}

/* Mobiel: links kolom links, rechts kolom rechts – volle breedte */
@media (max-width: 767px) {
  .trust-strip {
    column-gap: 0.75rem;
  }

  .trust-item {
    width: 100%;
  }

  .trust-item:nth-child(odd) {
    justify-content: flex-start;
  }

  .trust-item:nth-child(even) {
    justify-content: flex-end;
    text-align: right;
  }

  .trust-item:nth-child(even) .trust-text {
    align-items: flex-end;
  }
}

@media (min-width: 768px) {
  .trust-badges {
    margin-top: 3rem;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    column-gap: 2.5rem;
    row-gap: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .trust-item {
    gap: 0.75rem;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .trust-text {
    gap: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    column-gap: 3.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .trust-strip {
    column-gap: 4.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}

.trust-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  background-color: #15803d;
  color: #fff;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .trust-check {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.trust-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #171717;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .trust-title {
    font-size: 0.9375rem;
  }
}

.trust-sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #737373;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .trust-sub {
    font-size: 0.875rem;
  }
}
