.people {
}

.people__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.people__item {
	display: grid;
	grid-template-columns: 150px 1fr;
	align-items: start;
	gap: 1rem;
	padding-bottom: 1rem;
	margin-bottom: 1rem;

	@media (max-width: 500px) {
		grid-template-columns: 1fr;
	}
}

.people__item:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

.people__image {
	width: 100%;
	height: auto;
}
