/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */


.team-card {
    height: calc(100% - 2rem);
    margin-bottom: 2rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.team-thumbnail {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}

.team-thumbnail > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-name {
    margin-bottom: 0;
}

.team-member-name h4 {
    margin-bottom: 0.6rem;
}

.team-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

.team-role-badge,
.team-contribution-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.team-role-pmc {
    background: rgba(27, 20, 100, 0.1);
    color: var(--color-primary);
}

.team-role-committer {
    background: rgba(57, 181, 74, 0.14);
    color: #1f7a2b;
}

.team-contribution-badge {
    background: rgba(15, 23, 42, 0.06);
    color: #486581;
}

.team-github-link {
    color: #486581;
    font-weight: 700;
}

.team-github-link:hover {
    color: var(--color-primary);
}

