/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.staff-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.staff-card:hover {
    transform: translateY(-3px);
}

.staff-avatar {
    flex-shrink: 0;
}

.staff-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 3px solid var(--primary-blue);
}

.staff-info {
    flex: 1;
}

.staff-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.staff-position {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.staff-experience, .staff-age {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.staff-info p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Responsive Staff */
@media (max-width: 768px) {
    .staff-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .staff-avatar img,
    .avatar-placeholder {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-card {
        padding: 1.5rem;
    }
}