.aboutTeam_row {
	display: grid;
	gap: 50px;
}
.aboutTeam_item {
	display: grid;
	gap: 40px;
	font-size: 20px;
}
.aboutTeam_item picture {
	aspect-ratio: 1 / 1;
	width: 205px;
}
.aboutTeam_item_name {
	font-size: 25px;
	font-weight: 600;
}
.aboutTeam_item_post {
	margin-top: 5px;
	opacity: 0.5;
	font-size: 18px;
	line-height: 1.2;
}
.aboutTeam_item_post br + br {
	display: none;
}
.aboutTeam_item_text {
	margin-top: 20px;
	-webkit-line-clamp: 7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.aboutTeam_item .moreLink {
	margin-top: 20px;
	margin-inline: 0 auto;
}
.aboutTeam_item:nth-child(odd) {
	text-align: right;
}
.aboutTeam_item:nth-child(odd) .moreLink {
	margin-inline: auto 0;
}

@media (min-width: 1024px) {
	.aboutTeam .inner {
		max-width: 790px;
	}
	.aboutTeam_row {
		margin-inline: auto;
		gap: 70px;
	}
	.aboutTeam_item {
		grid-template-columns: 268px 1fr;
	}
	.aboutTeam_item picture {
		width: 268px;
	}
	.aboutTeam_item_name {
		line-height: 1;
	}
	.aboutTeam_item_post {
		opacity: 1;
	}
	.aboutTeam_item_text {
		-webkit-line-clamp: 7;
	}

	.aboutTeam_item:nth-child(odd) {
		grid-template-columns: 1fr 268px;
	}
	.aboutTeam_item:nth-child(odd) picture {
		order: 2;
	}
	.aboutTeam_item:nth-child(odd) .aboutTeam_item_text {
		order: 1;
	}
}

@media (min-width: 1600px) {
	.aboutTeam .inner {
		max-width: 860px;
	}
}