.client-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.client-card {
  background: #ffffff;
  border-radius: 12px; /* จาก 8 → นุ่มขึ้น */
  padding: 24px 16px;
  height: 180px; /* เพิ่ม breathing space */

  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 จาก top → center */
  align-items: center;

  text-decoration: none;
  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.client-card:hover .client-logo-img {
  transform: scale(1.05);
}

.client-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.client-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #1f2937;
  text-align: center;

  text-shadow: none; /* เอาเงาออก → luxury จะ clean */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    gap: 16px;
  }
}