.team-section {
    background: radial-gradient(circle at top right, rgba(var(--tf-primary-rgb, 255, 45, 47), 0.08), transparent 55%),
                linear-gradient(180deg, #f7f7f7 0%, #ffffff 45%);
}
.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}
.team-avatar {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease, filter 240ms ease;
}
.team-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--tf-primary-rgb, 255, 45, 47), 0.35), transparent 55%),
        linear-gradient(130deg, rgba(255, 255, 255, 0.35), transparent 45%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 240ms ease;
    pointer-events: none;
}
.team-initials {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--tf-primary, #ff2d2f);
}
.team-meta a {
    color: #2b2b2b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.team-meta a:hover {
    color: var(--tf-primary, #ff2d2f);
}
.team-meta i {
    color: var(--tf-primary, #ff2d2f);
}
.team-card:hover .team-avatar img {
    transform: scale(1.08) rotate(-1.2deg);
    filter: saturate(1.2) contrast(1.05);
}
.team-card:hover .team-avatar::after {
    opacity: 1;
}
.team-position {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
}
