.wf-brands-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
}

.wf-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: all .25s ease;
}

.wf-brand-logo:hover {
    transform: translateY(-4px);
}

.wf-brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}