.kundenlogos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
    padding: 2rem 0;
}

.kundenlogos-item {
    flex: 0 1 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kundenlogos-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.kundenlogos-item:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
    .kundenlogos-wrapper {
        gap: 2rem 3rem;
    }

    .kundenlogos-item img {
        max-height: 50px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .kundenlogos-wrapper {
        gap: 1rem 1rem;
    }

    .kundenlogos-item {
        flex: 0 1 30%;
    }

    .kundenlogos-item img {
        max-height: 40px;
    }
}
