/**
 * Paydaş Üniversiteler Modülü Stilleri
 * PaydasUniversiteler.html tasarımına uyumlu, TR
 */

#mainContent:has(.paydas-universiteler-page) {
    min-height: auto;
}

.paydas-universiteler-page {
    padding-top: 130px;
    min-height: 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 20%, #fff 100%);
}

/* Ana sayfa slider ile aynı genişlik (1600px) */
.universities-container {
    max-width: 1600px;
    margin: 0 auto 3rem;
    padding: 2rem 2rem 0;
}

.hero-title {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title .page-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a237e;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    background: linear-gradient(120deg, #1a237e, #3949ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .page-subtitle {
    font-size: 1.1rem;
    color: #5c6bc0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.university-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(26, 35, 126, 0.06);
}

.university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.15);
    border-color: rgba(26, 35, 126, 0.12);
}

.university-logo-container {
    width: 180px;
    height: 180px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.university-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.university-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a237e;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
}

.no-data {
    text-align: center;
    color: #666;
    padding: 3rem;
}

/* Alt bölümler */
.paydas-universiteler-page .supporters-section {
    padding-top: 2rem;
    border-top: none;
}

.paydas-universiteler-page .supporters-section::before {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .universities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title .page-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .paydas-universiteler-page {
        padding-top: 90px;
    }

    .universities-container {
        padding: 1.5rem 1rem 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        margin-bottom: 2rem;
    }

    .hero-title .page-title {
        font-size: 1.6rem;
    }

    .hero-title .page-subtitle {
        font-size: 1rem;
    }

    .universities-grid {
        gap: 1.25rem;
    }

    .university-card {
        padding: 1.25rem;
    }

    .university-logo-container {
        width: 140px;
        height: 140px;
        margin-bottom: 1rem;
    }

    .university-name {
        font-size: 0.9rem;
        min-height: 40px;
    }
}

@media (max-width: 576px) {
    .universities-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}
