.client-grid-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.client-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}

.client-card:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.offer-image {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.offer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.store-name {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.distance {
  font-size: 12px;
  color: #777;
}
