.trusted-strip {
  border-block: 2px solid var(--ink);
  background: var(--blue);
  color: var(--cream);
}

.trusted-strip__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  padding-block: 22px;
}

.trusted-strip__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trusted-strip__heading h2 {
  margin: 0;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trusted-strip__heading p {
  max-width: 250px;
  margin: 7px 0 0;
  color: rgba(255, 253, 246, 0.74);
  font-size: 0.76rem;
  line-height: 1.45;
}

.trusted-strip__clients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trusted-client {
  display: grid;
  min-width: 0;
  min-height: 70px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 253, 246, 0.34);
  border-radius: 5px;
  background: rgba(255, 253, 246, 0.08);
  color: var(--cream);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.trusted-client:hover,
.trusted-client:focus-visible {
  border-color: var(--lime);
  background: rgba(255, 253, 246, 0.14);
  color: var(--cream);
  transform: translateY(-2px);
}

.trusted-client:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.trusted-client__mark {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 253, 246, 0.38);
  border-radius: 50%;
  background: var(--cream);
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  place-items: center;
}

.trusted-client__name {
  min-width: 0;
}

.trusted-client__name strong,
.trusted-client__name small {
  display: block;
}

.trusted-client__name strong {
  overflow: hidden;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trusted-client__name small {
  margin-top: 3px;
  color: rgba(255, 253, 246, 0.68);
  font-size: 0.69rem;
  line-height: 1.25;
}

.trusted-client__arrow {
  color: var(--lime);
  font-size: 1.05rem;
  font-weight: 900;
}

@media (max-width: 720px) {
  .trusted-strip__inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 20px;
  }

  .trusted-strip__heading {
    align-items: center;
    text-align: center;
  }

  .trusted-strip__heading p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .trusted-strip__clients {
    grid-template-columns: 1fr;
  }

  .trusted-client {
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-client {
    transition: none;
  }
}
