.mtt-section {
    background: var(--surface);
}

.mtt-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 96px 24px;
}

.mtt-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.mtt-head .section-label {
    color: var(--accent-deep);
    justify-content: center;
}

.mtt-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.mtt-head p {
    font-size: 1.05rem;
    color: var(--ink-2);
    line-height: 1.75;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
    gap: 24px;
}

.team-member {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-2);
}

.team-photo {
    aspect-ratio: 1 / 1;
    background: var(--canvas-2);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(35%);
    transition: filter 0.35s var(--ease), transform 0.45s var(--ease);
    display: block;
}

.team-member:hover .team-photo img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.team-photo--fit {
    background: linear-gradient(180deg, var(--canvas-2), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo--fit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
    box-sizing: border-box;
}

.team-member:hover .team-photo--fit img {
    transform: scale(1.0);
}

.team-meta {
    padding: 18px 20px 22px;
    flex: 1;
}

.team-meta h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin: 0 0 5px;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-2);
    line-height: 1.3;
}

.team-linkedin {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #0a66c2;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    opacity: 0;
    transform: translateY(-6px);
    background: #0a66c2;
    color: #fff;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background 0.2s var(--ease);
}

.team-member:hover .team-linkedin {
    opacity: 1;
    transform: translateY(0);
}

.team-linkedin:hover {
    background: #004182;
}

@media (hover: none) {
    .team-linkedin {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 600px) {
    .mtt-inner {
        padding: 64px 18px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .team-meta {
        padding: 14px 14px 16px;
    }

    .team-meta h3 {
        font-size: 1rem;
    }
}
