.sponsoren-container {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 200px;
    align-items: stretch;
    justify-items: center;
}

.sponsor-item {
    width: auto;
    max-width: 500px;
    height: auto;
    max-height: 400px;
    aspect-ratio: 1;
}

.sponsor-item img {
    object-fit: contain;
    width: 100%;
    height: 60%;
}

.sponsor-item h5 {
    text-align: center;
}

/*
    ### mobile & design ###
 */
@media only screen and (max-width: 780px) {
    .sponsoren-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}