.alumni-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.alumni-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alumni-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.alumni-filters {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-controls select,
.filter-controls input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    min-width: 150px;
}

.filter-controls input {
    flex: 1;
    max-width: 300px;
}

.alumni-list {
    padding: 60px 0;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.alumni-card-full {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alumni-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.alumni-photo-full {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}

.alumni-photo-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-header h3 {
    margin: 0 0 5px;
    font-size: 1.3rem;
}

.alumni-header .rank {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.alumni-details {
    padding: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.detail-value {
    color: #333;
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
    margin-left: 20px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-retired {
    background: #f8d7da;
    color: #721c24;
}

.achievements {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.achievements h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #1a472a;
}

.achievements p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .alumni-hero h1 {
        font-size: 2rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-controls select,
    .filter-controls input {
        min-width: auto;
        width: 100%;
    }
    
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
        margin-left: 0;
    }
}