:root {
    --main-purple: #5c59d4;
    --light-purple: #f1f1fd;
    --text-dark: #2d2a7e;
    --text-light: #6e6cc1;
    --border-color: #e0e0fb;
}

.sponsors-section-lg {
    padding: 80px 30px; /* Daha fazla dolgu, daha büyük alan */
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.sponsors-container {
    max-width: 1100px; /* Konteyneri biraz daha genişlettim */
    margin: 0 auto;
}

.sponsors-title {
    color: var(--text-dark);
    font-size: 32px; /* Başlık daha büyük */
    margin-bottom: 50px; /* Daha fazla boşluk */
    font-weight: 800;
}

.sponsors-title::after {
    content: '';
    display: block;
    width: 60px; /* Daha uzun çizgi */
    height: 5px; /* Daha kalın çizgi */
    background: var(--main-purple);
    margin: 15px auto 20px;
    border-radius: 10px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha geniş kartlar */
    gap: 30px; /* Daha fazla boşluk */
    justify-content: center;
}

.sponsor-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px; /* Daha fazla yuvarlak köşeler */
    padding: 35px; /* Daha fazla dolgu */
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-card:hover {
    border-color: var(--main-purple);
    transform: translateY(-8px); /* Daha fazla hover efekti */
    box-shadow: 0 15px 30px rgba(92, 89, 212, 0.1);
}

/* Fotoğraf Kapsayıcısı */
.sponsor-photo-wrapper {
    width: 120px; /* Fotoğraflar daha büyük */
    height: 120px;
    border-radius: 50%; /* Yuvarlak logo alanı */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px; /* Daha fazla boşluk */
    overflow: hidden; /* Dışarı taşmayı engelle */
    background-color: var(--light-purple); /* Metin logosu için arka plan */
}

/* Gerçek Fotoğraf/Logo */
.sponsor-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Oranları koruyarak sığdır */
    object-position: center;
}

/* İkonların boyutu ve hizalaması */
.sponsor-icon {
    font-size: 50px; /* İkon/Emoji büyüklüğü */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Kapsayıcıyı ikon için optimize etme */
.sponsor-photo-wrapper {
    width: 120px;
    height: 120px;
    background-color: #f1f1fd; /* Önceki verdiğim lila tonu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* Kartın üzerine gelince ikonu biraz büyütme efekti */
.sponsor-card:hover .sponsor-photo-wrapper {
    transform: scale(1.1);
    background-color: #e0e0fb;
}

/* Kart metinlerini biraz daha net yapalım */
.sponsor-desc {
    font-size: 13px;
    color: #6e6cc1;
    line-height: 1.5;
    margin-top: 5px;
    display: block;
    padding: 0 10px;
}

/* Metin Logosu (Yedek) */
.sponsor-logo-text {
    color: var(--main-purple);
    font-weight: bold;
    font-size: 14px;
}

.sponsor-details {
    text-align: center;
}

.sponsor-name {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px; /* Daha büyük sponsor ismi */
    display: block;
    margin-bottom: 8px;
}

.sponsor-desc {
    color: var(--text-light);
    font-size: 14px;
    display: block;
}

/* Mobil uyum için */
@media (max-width: 600px) {
    .sponsors-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}