/* --- SPONSOR SECTION --- */
.sponsor-section { 
    background: white; 
    padding: 40px 0; 
    margin-top: 20px; 
    border-top: 1px solid #eee;
}

/* Layout Grid cho Sponsor */
.sponsor-card-box { 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    padding: 20px; 
    height: 100%; 
    transition: 0.3s;
}
.sponsor-card-box:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sponsor-label { 
    color: var(--gold); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 11px; 
    margin-bottom: 15px; 
    display: block; 
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.sponsor-logo-display { 
    max-height: 60px; 
    margin-bottom: 15px; 
    object-fit: contain;
}

.sponsor-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}
.sponsor-item-row:last-child { border-bottom: none; }

.sponsor-info h5 { font-size: 14px; font-weight: 700; margin: 0; color: var(--text-dark); }
.sponsor-info p { font-size: 13px; color: #666; margin: 0; }

/* Gift Image */
.gift-image-display { 
    width: 100%; 
    border-radius: 6px; 
    border: 1px solid #eee; 
    margin-top: 10px; 
}