div#images {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 32px;
    flex-wrap: wrap;
}

a.sponsor {
    width: 20vw;
    min-width: fit-content;
    background-color: var(--block-accent);
    padding: 8px;
    border-radius: 8px;
    color: var(--block-text);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a.sponsor > img {
    width: 100%;
    max-width: 15vw;
    border-radius: 4px;
    margin: 0;
    margin-bottom: 8px;
}

a.sponsor > p {
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    text-wrap: balance;
}