/* Footer accreditation grid — unify icon sizing so all 5 logos render at
   the same height. Webflow's default rules size each img by its intrinsic
   SVG viewBox, so DFC and Legit_Script (taller viewBoxes) overflow the
   grid row and drop below the other logos. Forcing a uniform height with
   object-fit: contain keeps every logo on the same row. */
.accreditations-div .grid-5 img {
  height: 76px;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .accreditations-div .grid-5 img { height: 54px; }
}
@media (max-width: 600px) {
  .accreditations-div .grid-5 img { height: 42px; }
}
