.icp-client-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgb(128 216 167 / .18), transparent 20rem),
    radial-gradient(circle at 88% 82%, rgb(51 166 245 / .15), transparent 24rem),
    linear-gradient(145deg, #f8fcff, #eefbf3);
}

.icp-client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.icp-client-card {
  display: grid;
  min-width: 0;
  min-height: 5.4rem;
  place-items: center;
  border: 1px solid rgb(188 232 255 / .9);
  border-radius: 1rem;
  background: rgb(255 255 255 / .9);
  padding: .85rem;
  box-shadow: 0 .7rem 1.5rem rgb(13 47 79 / .07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icp-client-card img {
  display: block;
  width: 100%;
  max-width: 11rem;
  max-height: 3.25rem;
  object-fit: contain;
  filter: grayscale(1) saturate(.35);
  opacity: .78;
  transition: filter 180ms ease, opacity 180ms ease;
}

.icp-client-card:hover {
  transform: translateY(-.25rem);
  border-color: rgb(128 216 167 / .95);
  box-shadow: 0 1rem 2rem rgb(13 47 79 / .13);
}

.icp-client-card:hover img {
  filter: none;
  opacity: 1;
}

@media (min-width: 640px) {
  .icp-client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .icp-client-card {
    min-height: 6.25rem;
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .icp-client-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .icp-client-card {
    min-height: 6.75rem;
    border-radius: 1.15rem;
  }

  .icp-client-card:nth-child(7n + 1),
  .icp-client-card:nth-child(7n + 4) {
    grid-column: span 2;
  }

  .icp-client-card:nth-child(7n + 1) img,
  .icp-client-card:nth-child(7n + 4) img {
    max-width: 13rem;
  }
}
