/* Educational institution sponsors logos */
.sponsor-card-small img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Sponsor Title Colors for Visibility */
.crown-gold-title {
    color: #FFC700 !important; /* Gold */
    text-shadow: 0 0 10px #FFD700, 0 0 2px #333, 1px 1px 0 #8a6d1d;
    font-weight: bold;
    letter-spacing: 1px;
}
.crown-silver-title {
    color: #E5E5E5 !important; /* Silver */
    text-shadow: 0 0 10px #C0C0C0, 0 0 5px #333, 2px 2px 0 #7d7d7d;
    font-weight: bold;
    letter-spacing: 1px;
}
.crown-bronze-title {
    color: #FF9933 !important; /* Bronze */
    text-shadow: 0 0 10px #cd7f32, 0 0 2px #333, 1px 1px 0 #7a4c15;
    font-weight: bold;
    letter-spacing: 1px;
}
.sponsor-logo-large img {
    max-width: 100%;
    max-height: 220px;
    width: auto !important;
    height: auto !important;
    min-width: 220px;
    min-height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Sponsor Crown Colors */
.crown-gold {
    color: #FFD700 !important;
    text-shadow: 0 0 8px #FFD70099;
}
.crown-silver {
    color: #C0C0C0 !important;
    text-shadow: 0 0 8px #C0C0C099;
}
.crown-bronze {
    color: #cd7f32 !important;
    text-shadow: 0 0 8px #cd7f3299;
}
.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    background: transparent;
    box-sizing: border-box;
    border-radius: 10px;
    width: fit-content;
    height: fit-content;
    min-width: 20px;
    min-height: 20px;
    padding: 0;
}

 .sponsor-logo img {
    width: 200px !important;
    height: 100px !important;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    background: transparent;
}

/* Center last two logos in gold section */
.sponsors-grid.premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Optional - Gold sponsors */
.sponsors-category .sponsors-grid.premium:last-of-type {
    justify-content: center !important;
}