.angie-client-logo-grid {
    display: grid;
    /* Default is overridden by control */
    grid-template-columns: repeat(4, 1fr);
    /* Default is overridden by control */
    gap: 30px;
    width: 100%;
}

.angie-client-logo-item {
    display: flex;
    /* Defaults, overridden by controls */
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.angie-client-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.angie-client-logo-img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Make sure images don't overflow their grid cells */
.angie-client-logo-item img {
    max-width: 100%;
}
