.team .border-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.team__card {
    margin: 60px auto 0;
    max-width: 900px;
    padding: 50px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(52,109,166,.3);
}


.team__card p {
    font-size: var(--text-size-18);
    opacity: 0.7;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team_item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.team_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.team_item .h5,
.team_item__desc {
    position: absolute;
    z-index: 2;
    color: #fff;
}

.team_item .h5 {
    bottom: 48px;
    left: 32px;
}

.team_item__desc {
    bottom: 20px;
    left: 32px;
    font-size: var(--text-size-18);
}

.team_item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform .5s ease;
}

.team_item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1199px) {
    .team__card {
        margin-top: 30px;
    }

    .team__card p {
        font-size: var(--text-size-16);
    }
}