/* Add to your CSS file for the feedback gallery section */
/* White background for the whole page */
body {
  background: #fff !important;
}


.glc-client-feedback-gallery-section {
  max-width: 1400px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 1.5rem;
   background: none;
}
.glc-client-feedback-gallery-title {
  display: flex;
  justify-content: center; /* <-- center horizontally */
  align-items: center;
  color: #b8860b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
  gap: 0.5rem;
}
.glc-client-feedback-gallery-icon {
  font-size: 2.1rem;
  vertical-align: middle;
}
.glc-client-feedback-gallery-subtitle {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  text-align: center;
}
.glc-client-feedback-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:0.5rem; /* No gap between cards */
  justify-items: stretch;

}
.glc-client-feedback-gallery-card {
  width: 100%;
  max-width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
.glc-client-feedback-gallery-card:hover {
  box-shadow: 0 8px 32px 0 rgba(184,134,11,0.18);
}
.glc-client-feedback-gallery-img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0;
  background: #fff;
  transition: box-shadow 0.2s;
}

/* Optional: Add a little shadow on hover for effect */
.glc-client-feedback-gallery-card:hover .glc-client-feedback-gallery-img {
  box-shadow: 0 4px 18px 0 rgba(184,134,11,0.10);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .glc-client-feedback-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 600px) {
  .glc-client-feedback-gallery-section {
    padding: 0 0.3rem;
  }
  .glc-client-feedback-gallery-title {
    font-size: 1.1rem;
  }
  .glc-client-feedback-gallery-subtitle {
    font-size: 0.98rem;
  }
}