.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    transition: transform .15s ease, box-shadow .2s ease;
}
.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.team-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.team-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: cover;
    background: #0d0d17;
}
.team-card__meta {
    display: flex;
    flex-direction: column;
}
.team-card__name {
    margin: 0;
    font-weight: 700;
    color: var(--text);
}
.team-card__role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--muted);
}
.team-card__body {
    flex: 1 1 auto;
    color: var(--muted);
}
.team-card__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}
.team-card__link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.team-card__link:hover {
    color: var(--accent-700);
}