.brand .boxImage {
    background: var(--third);
}

/* Fix: consistent image container height — responsive with clamp */
.brand .boxImage {
  height: clamp(140px, 18vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix: image fills container proportionally without distortion */
.brand .boxImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 3vw, 40px);
}