.team-items-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 100%;
    margin-top: 60px;
}
.team-items-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0px;
    gap: 24px;
    justify-content: center;
	margin-bottom: 48px;
    width:100%;
}
.team-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px;
    gap: 20px;
    isolation: isolate;
    background: #FFFFFF;
    box-shadow: 0px 8px 20px rgba(103, 63, 222, 0.1);
    border-radius: 16px;
    flex-grow: 1;
    max-width: 544px;
    position: relative;
	flex-basis: 33%;
}
.team-item-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 100%;
}
.team-item-title-name {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #24292F;
}
.team-item-title-post {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3F56C9;
    max-width: calc(100% - 70px);
}
.team-item-txt {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #24292F;
}
.team-item-img {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 32px;
    top: -28px;
    border-radius: 50px;
}
@media screen and (max-width: 991px) {
    .team-items-block {
        padding: 0px;
        gap: 48px;
		margin-top: 32px;
    }
    .team-items-row {
        flex-direction: column;
        gap: 48px;
    }
    .team-item {
        max-width: none;
    }
}
@media screen and (max-width: 480px) {
    .team-items-block {
        gap: 32px;
		margin-top: 0;
    }
    .team-items-row {
        gap: 32px;
    }
    .team-item {
        padding: 16px 20px;
        gap: 12px;
    }
    .team-item-title-name {
        font-size: 18px;
        line-height: 24px;
    }
    .team-item-title-post {
        font-size: 11px;
        line-height: 12px;
    }
    .team-item-txt {
        font-size: 14px;
        line-height: 18px;
    }
    .team-item-img {
        width: 72px;
        height: 72px;
        right: 20px;
        top: -16px;
        background-size: contain;
    }
}