.people {
	max-width: 900px;
}

.people .d-heading {
	margin-left: auto;
	margin-right: auto;
}

.people .flex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 120px;
	grid-row-gap: 80px;
}

.people .card {
	position: relative;
	background: #FFF;
	box-sizing: border-box;
}

.people .card > * {
	margin: 0 0 20px;
}

.people .card > *:nth-last-child(1) {
	margin: 0;
}

.people .card .d-subheading {
	width: 100%;
	text-align: center;
}

.people .card .date {
	font-weight: 600;
	color: var(--color-text-gray);
	text-align: center;
}

.people .card p {
	line-height: 1.6em;
	text-align: center;
}

.people .card img, .people .card .image {
	display: block;
	width: 180px;
	height: 180px;
	border-radius: 100%;
	background: #F4F4F4;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto 30px;
	object-fit: cover;
}

@media only screen and (max-width: 950px) {
	.people .flex {
		grid-column-gap: 80px;
		grid-row-gap: 80px;
	}
}

@media only screen and (max-width: 800px) {
	.people {
		max-width: 450px;
	}
	.people .flex {
		grid-template-columns: 1fr;
	}
}









