.p-person-wrap,
.p-person-wrap *{
	box-sizing: border-box;
}
.p-persons-list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
.p-persons-item,
.p-person-top-item{
	display: flex;
	padding-bottom: 30px;
	align-items: flex-end;
}
.p-persons-item{
	padding: 30px;
	border: 1px solid #e4e4e4;
}
.p-persons-item__photo,
.p-person-top-item__photo{
	flex-shrink: 0;
	margin-right: 25px;
}
.p-persons-item__photo{
	max-width: 190px;
}
.p-person-top-item__photo{
	max-width: 274px;
}
.p-persons-item__photo > img,
.p-person-top-item__photo > img{
	max-width: 100%;
	height: auto;
}
.p-persons-item__about,
.p-person-top-item__about{
	width: 100%;
}
.p-persons-item__name,
.p-person-top-item__name{
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 10px;
	font-weight: bold;
	text-transform: uppercase;
}
.p-persons-item__post,
.p-person-top-item__post{
	font-size: 14px;
	line-height: 1.4;
	font-weight: 300;
	text-transform: uppercase;
}
.p-person-top-item__btn{
	display: inline-block;
	margin-top: 25px;
	color: #f97e2b;
}
.p-person-top-item__btn:hover{
	text-decoration: underline;
}
@media (max-width: 1100px) {
	.p-persons-item{
		padding: 20px;
	}
	.p-persons-item__photo{
		max-width: 150px;
	}
}
@media (max-width: 900px) {
	.p-persons-item{
		padding: 15px;
	}
	.p-persons-item__photo{
		max-width: 120px;
	}
	.p-persons-list{
		grid-template-columns: 1fr;
	}
}
@media (max-width: 767px) {
	.p-person-top-item__photo{
		max-width: 190px;
	}
}
@media (max-width: 500px) {
	.p-person-top-item__photo,
	.p-persons-item__photo,
	.p-person-top-item__about{
		max-width: 378px;
	}
	.p-persons-item__photo > img,
	.p-person-top-item__photo > img{
		width: 100%;
	}
	.p-persons-item,
	.p-person-top-item{
		flex-direction: column;
		align-items: center;
	}
	.p-persons-item__photo,
	.p-person-top-item__photo{
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.p-person-top-item__about__text {
	font-weight: 300;
	line-height: 1.4;
	max-width: 400px;
	margin-top: auto;
	padding-top: 20px;
	font-size: 16px;
}
.p-person-top-item {
	align-items: stretch;
}
.p-person-top-item__about {
	display: flex;
	flex-direction: column;
}