.sponsors {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsors-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.sponsor-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.4s ease;
}

.sponsor-cell:hover .sponsor-img {
    transform: scale(1.05);
}

.sponsor-cell.platinum {
    width: 300px;
    height: 140px;
}

.sponsor-cell.gold {
    width: 180px;
    height: 100px;
}

.sponsor-cell.silver {
    width: 140px;
    height: 80px;
}
