.clients-section {
  max-width: 100%;
  margin: 50px auto;
  padding: 0 60px;   /* controls left/right spacing */
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: center;
}

.clients-grid a {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 130px;          /* bigger tile */
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  text-decoration: none;
}

.clients-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.clients-grid img {
  max-width: 180px;       /* BIGGER */
  max-height: 90px;       /* BIGGER */
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

.clients-grid a:hover img {
  filter: grayscale(0%);
}


/* ================================
   OUR CLIENTS – TITLE STYLING
   ================================ */

.clients-module .moduletable-title,
.clients-module h3,
.clients-module h2 {
  font-size: 56px;        /* BIG title */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .clients-module .moduletable-title,
  .clients-module h3,
  .clients-module h2 {
    font-size: 36px;
  }
}

/* FORCE CLIENT LOGOS TO BE CLICKABLE */
.clients-grid,
.clients-grid a,
.clients-grid img {
  pointer-events: auto !important;
}

.clients-grid a {
  position: relative;
  z-index: 5;
}
