.sponsor {
    width: 24%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    padding: 20px 30px;
    aspect-ratio: 1 / 1;

    a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;

        img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        p {
            color: var(--color-text);
            font-style: italic;
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            margin: 10px 0;
            position: absolute;
            bottom: 0;
        }
    }

    > img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

.sponsor-header {
    margin: 10px 0;
    text-align: center;

    &.color-platinum {
        color: #b9c7c6;
    }

    &.color-gold {
        color: #ebbb10;
    }

    &.color-silver {
        color: #999da1;
    }

    &.color-bronze {
        color: #8b664d;
    }

    &.color-other {
        color: #333333;
    }
}

@media all and (max-width: 850px) {
    .sponsor {
        width: 35%;
    }
}

@media all and (max-width: 550px) {
    .sponsor {
        width: 50%;
    }
}