.footer-accredited-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Desktop */
  gap: 2.5rem;
}

.footer-accredited-icons .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-accredited-icons img {
  max-height: 120px; /* Caps tall logos */
  height: auto;      /* Prevents forced upscaling */
  width: auto;
  display: block;
}

/* Center below 1024 */
@media (max-width: 1023px) {
  .footer-accredited-icons {
    justify-content: center;
  }
}

/* Stack on mobile */
@media (max-width: 768px) {
  .footer-accredited-icons {
    flex-direction: column;
    align-items: center;
  }
}
