/* team.css — professionella personalkort med bildram */

.team-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-3);
}
.team-full-card {
    padding: var(--space-4);
    text-align: center;
}
.team-full-photo-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto var(--space-2);
    padding: 4px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-full-photo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-bg-alt);
}
.team-full-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
}
.team-full-role {
    display: block;
    color: var(--color-accent-soft);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: var(--space-2);
}
