
/* Compact Stats bar */
.alumni-stats {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    flex-wrap: wrap;
}

.a-stat { 
    display: flex; 
    align-items: center; 
    gap: 0.85rem; 
    padding: 0; 
    background: transparent; 
}

.a-stat .val { 
    font-size: 1.75rem; 
    font-weight: 800;
    color: var(--primary-color); 
    font-family: var(--font-heading);
}

.a-stat .lbl { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    font-weight: 700;
    letter-spacing: 1px; 
    color: #64748b; 
}

/* Filter bar */
.filter-bar { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.75rem; padding: 1rem 1.25rem; background: white; border-radius: 10px; border: 1px solid #f0e8e8; }
.filter-bar label { font-size: 0.8rem; font-weight: 600; color: #2d0507; white-space: nowrap; }
.filter-bar select, .filter-bar input { padding: 0.5rem 0.85rem; border: 1px solid #e8c8c8; border-radius: 8px; font-size: 0.86rem; font-family: inherit; background: #faf8f5; }
.filter-bar select:focus, .filter-bar input:focus { outline: none; border-color: #7b1113; }

/* Alumni grid */
.alumni-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 1.5rem; 
}

.alumni-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.alumni-card:hover { 
    box-shadow: 0 12px 30px rgba(123,17,19,0.08); 
    transform: translateY(-4px); 
    border-color: rgba(123, 17, 19, 0.1);
}

.alumni-card-inner { 
    padding: 1.25rem 1.25rem 0.65rem; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    box-sizing: border-box; 
}

.alumni-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.15rem; }

.alumni-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.alumni-name { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.15rem; line-height: 1.3; }
.alumni-batch { font-size: 0.65rem; font-weight: 700; color: #c4893a; text-transform: uppercase; letter-spacing: 0.8px; }

.alumni-body { margin-bottom: 0.4rem; flex: 1; }
.alumni-body:empty { display: none; margin-bottom: 0; }
.alumni-info { font-size: 0.82rem; color: #64748b; display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.4rem; line-height: 1.4; }
.alumni-info i { color: #cbd5e1; font-size: 0.82rem; width: 16px; text-align: center; margin-top: 0.15rem; display: inline-block; flex-shrink: 0; }

.linkedin-info a {
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
}
.linkedin-info a:hover {
    color: #005582;
    text-decoration: underline;
}
.linkedin-info i.fab.fa-linkedin {
    color: #cbd5e1;
}

.batch-heading {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1e293b;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
    margin: 3rem 0 1.5rem;
}

.empty-state { text-align: center; padding: 4rem 2rem; color: #6b5c5c; }
.empty-state i { font-size: 3rem; color: #e8c8c8; display: block; margin-bottom: 1rem; }

@media (max-width: 600px) {
    .alumni-stats { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 0.5rem;
        padding: 1.5rem 1rem; 
        justify-content: center;
        margin-bottom: 2rem;
    }
    .a-stat { 
        flex-direction: column; 
        gap: 0.35rem; 
        text-align: center;
        justify-content: center;
    }
    .a-stat .val { font-size: 1.5rem; }
    .a-stat .lbl { font-size: 0.62rem; text-align: center; line-height: 1.2; }
}
