.faculty-summary-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1450px;
    margin: 32px auto;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Toplam Sonuç Özeti */
.summary-header {
    text-align: center;
    margin: 0 auto 36px auto;
    padding: 0 12px;
    /*max-width: 1200px;*/
}

.summary-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2b303b;
    margin: 50px 0 50px 0;
    line-height: 2.5rem;
    font-family: system-ui,sans-serif;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.summary-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: var(--tlm-radius-lg, 0.75rem);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.summary-stat-item:hover {
    box-shadow: 0 6px 10px rgba(15, 23, 42, 0.12);
}

.summary-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /*background: #f1f5f9;*/
    color: #074d78;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-stat-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.summary-stat-icon .faculty-icon8 {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    top: 0;
}

.summary-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.summary-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    font-family: system-ui,sans-serif;
}

.summary-stat-label {
    font-size: 0.875rem;
    color: #737b8c;
    text-align: center;
    line-height: 1.25rem;
    font-family: system-ui,sans-serif;
}

@media (max-width: 1000px) {
    .faculty-summary-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .faculty-card {
        min-height: 260px; /* Tablet'te biraz daha küçük */
    }
    
    .summary-header {
        margin: 20px auto 30px auto;
        padding: 15px;
    }
    
    .summary-stats {
        gap: 20px;
    }
    
    .summary-stat-item {
        padding: 12px 20px;
    }
}

@media (max-width: 700px) {
    .faculty-summary-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faculty-card {
        min-height: 250px; /* Mobilde daha da küçük */
        padding: 24px 20px 20px 20px; /* Padding azaltıldı */
    }
    
    .faculty-title {
        min-height: 50px; /* Mobilde başlık yüksekliği azaltıldı */
        font-size: 1.3rem; /* Font boyutu küçültüldü */
    }
    
    .summary-header {
        margin: 15px auto 25px auto;
        padding: 15px;
    }
    
    .summary-title {
        font-size: 1.5rem;
        margin-bottom: 15px;        
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 800px;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

.faculty-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    /*box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);*/
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    transform: translateZ(0);
}

.faculty-card:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-6px) scale(1.02);
}

.faculty-icon {
    background: #f8fafc;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 18px;*/
    flex-shrink: 0; /* İkon boyutu sabit kalsın */
}

.faculty-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a2746;
    /*margin-bottom: 18px*/;
    text-align: center;
    line-height: 1.75rem; /* Satır yüksekliği eklendi */
    flex: 1; /* Başlık alanı genişlesin */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px; /* Minimum başlık yüksekliği */
    font-family: system-ui,sans-serif;
}

.faculty-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #737b8c;
    font-size: 0.95rem;
    font-family: system-ui,sans-serif;
}

.faculty-info-icon {
    font-size: 1em;
    margin-right: 6px;
    vertical-align: middle;
}

.faculty-icon8 {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
