/* Fallback styles for client logos */
#client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 2.5rem;
}

#client-logos img {
  height: 4rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
  filter: grayscale(100%);
}

#client-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Ensure images have a minimum size even if they fail to load */
#client-logos img::before {
  content: "";
  display: block;
  width: 160px;
  height: 64px;
  background-color: #f3f4f6;
  border-radius: 4px;
}
