#sponsors {
    max-width: var(--section-max-width);
}

#sponsors .s-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 20px;
}

#sponsors .s-container li {
    list-style: none;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* >>>> 스폰서 타이틀 스타일 */
#sponsors .section-body > h1 {
    font-family: var(--font-poppins);
    font-weight: 100;
    font-size: 80px;
    text-align: center;
    margin-top: 100px;

    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.55),
        2px 2px 5px rgba(0, 0, 0, 0.75);
    background-clip: text;
    color: transparent;
}

#sponsors h1.diamond {
    background: linear-gradient(
        to right,
        #28B7CA 0%,
        #FFFFFF 31%,
        #28B7CA 74%,
        #28B7CA 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sponsors h1.party-sponsor {
    background: linear-gradient(
        to right,
        #CA2828 0%,
        #FFFFFF 31%,
        #CA2828 74%,
        #CA2828 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sponsors h1.gold {
    background: linear-gradient(
        to right,
        #CAA928 0%,
        #FFFFFF 31%,
        #CAA928 74%,
        #CAA928 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sponsors h1.silver {
    background: linear-gradient(
        to right,
        #C0C0C0 0%,
        #FFFFFF 31%,
        #C0C0C0 74%,
        #C0C0C0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* <<<<<<<<<<<<<<<<<<<< */

@media (max-width: 768px) {
    #sponsors .section-body > h1 {
        font-size: 68px;
    }
}