.tsco-team-section{
    width:100%;
    min-height:calc(100vh - 84px);
    padding:54px 0;
    background:#ffffff;
    border-bottom:1px solid #E5E7EB;
    font-family:'Urbanist',sans-serif;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.tsco-team-section .container{
    width:min(1440px,100%);
    margin:0 auto;
    padding:0 44px;
}

.tsco-team-head{
    max-width:860px;
    margin:0 auto 26px;
    text-align:center;
}

.tsco-team-head h2{
    margin:10px 0 0;
    color:#111827;
    font-size:clamp(30px,2.7vw,42px);
    line-height:1.08;
    letter-spacing:-.035em;
    font-weight:600;
}

.tsco-team-head p{
    max-width:720px;
    margin:12px auto 0;
    color:#54595F;
    font-size:15px;
    line-height:1.55;
    font-weight:300;
}

.tsco-team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    align-items:stretch;
}

.tsco-team-card{
    background:#ffffff;
    border:1px solid #E5E7EB;
    overflow:hidden;
    position:relative;
    transition:border-color .25s ease, transform .25s ease;
    display:flex;
    flex-direction:column;
    min-height:520px;
}

.tsco-team-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:#A63539;
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s ease;
    z-index:3;
}

.tsco-team-card:hover{
    transform:translateY(-5px);
    border-color:#A63539;
}

.tsco-team-card:hover::before{
    transform:scaleX(1);
}

.tsco-team-image{
    height:300px;
    background:#F3F4F6;
    overflow:hidden;
    position:relative;
    border-bottom:1px solid #E5E7EB;
}

.tsco-team-image::after{
    display:none;
}

.tsco-team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
    transition:none;
}

.tsco-team-card:hover .tsco-team-image img{
    transform:none;
}

.tsco-team-content{
    padding:22px 24px;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    flex:1;
}

.tsco-team-content span{
    display:block;
    color:#A63539;
    font-size:11px;
    font-weight:600;
    letter-spacing:.16em;
    text-transform:uppercase;
    margin-bottom:9px;
}

.tsco-team-content h3{
    margin:0;
    color:#111827;
    font-size:24px;
    line-height:1.12;
    letter-spacing:-.025em;
    font-weight:600;
}

.tsco-team-content p{
    margin:12px 0 0;
    color:#54595F;
    font-size:14px;
    line-height:1.62;
    font-weight:300;
}

@media(max-width:1100px){
    .tsco-team-section{
        min-height:auto;
        padding:64px 0;
    }

    .tsco-team-section .container{
        padding:0 24px;
    }

    .tsco-team-grid{
        gap:14px;
    }

    .tsco-team-card{
        min-height:500px;
    }

    .tsco-team-image{
        height:280px;
    }

    .tsco-team-content{
        padding:20px;
    }

    .tsco-team-content h3{
        font-size:22px;
    }

    .tsco-team-content p{
        font-size:13.5px;
    }
}

@media(max-width:900px){
    .tsco-team-section{
        min-height:auto;
        padding:54px 0;
        display:block;
    }

    .tsco-team-grid{
        grid-template-columns:1fr;
    }

    .tsco-team-card{
        min-height:auto;
    }

    .tsco-team-image{
        height:350px;
    }

    .tsco-team-content{
        min-height:auto;
    }
}

@media(max-width:640px){
    .tsco-team-section{
        padding:44px 0;
    }

    .tsco-team-section .container{
        padding:0 16px;
    }

    .tsco-team-head{
        text-align:left;
        margin-bottom:20px;
    }

    .tsco-team-head h2{
        font-size:28px;
    }

    .tsco-team-head p{
        font-size:14px;
    }

    .tsco-team-image{
        height:285px;
    }

    .tsco-team-content{
        padding:18px;
    }

    .tsco-team-content h3{
        font-size:22px;
    }

    .tsco-team-content p{
        font-size:13.5px;
        line-height:1.55;
    }
}