.artemis-client-list {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  width: min(100%, 760px);
  margin: 30px auto 0;
}

.artemis-client-logo {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid #d7e0e5;
  background: #ffffff;
  color: #071b2f;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.artemis-client-logo:hover,
.artemis-client-logo:focus-visible {
  border-color: #0d72b9;
  box-shadow: 0 12px 30px rgba(7, 27, 47, .12);
  transform: translateY(-2px);
}

.artemis-client-logo img {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 92px;
  object-fit: contain;
}

.artemis-client-logo span {
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 620px) {
  .artemis-client-logo { min-height: 130px; }
}
