/* Basic grid */
.brand-grid {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

/* brand item */
.brand-item {
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* width/padding/radius will be controlled by Elementor selectors */
}

.brand-item h4 {
  margin-top: 10px;
  font-size: 15px;
}

/* center load more button */
.brand-load-more-wrapper {
  text-align: center;
  margin-top: 28px;
}

.brand-load-more {
  padding: 10px 22px;
  background: #0073e6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.brand-load-more.loading {
  opacity: 0.8;
  pointer-events: none;
}

/* small responsive tweaks */
@media (max-width: 767px) {
  .brand-grid {
    gap: 14px;
  }
  .brand-item h4 {
    font-size: 14px;
  }
}
