/**
 * Footer Logos Fix
 * 
 * Prevents footer logos from being stretched by flexbox
 * Ensures proper sizing for footer logos
 * This fix loads globally on all pages
 */

.footer-logos a {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: center !important;
}

.footer-logos img {
    max-width: 200px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

/* Responsive sizing for smaller screens */
@media (max-width: 768px) {
    .footer-logos img {
        max-width: 150px !important;
    }
}

