.PeopleListWidget {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px;
	direction: rtl;
}

.PeopleListWidget__item {
	width: 100%;
}

.PeopleListWidget__inner {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.PeopleListWidget__link {
	cursor: pointer;
}

.PeopleListWidget__media {
	flex: 0 0 84px;
	width: 84px;
	min-width: 0;
}

.PeopleListWidget__image,
.PeopleListWidget__placeholder {
	display: block;
	width: 100%;
	height: 64px;
	border-radius: 5px;
}

.PeopleListWidget__image {
	object-fit: cover;
}

.PeopleListWidget__placeholder {
	background-color: #f0f0f0;
}

.PeopleListWidget__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	gap: 4px;
	text-align: right;
}

.PeopleListWidget__title {
	margin: 0;
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
}

.PeopleListWidget__description {
	margin: 0;
	color: #7b7b7b;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.8;
}

.PeopleListWidget__link:hover,
.PeopleListWidget__link:focus {
	color: inherit;
	text-decoration: none;
}

.PeopleListWidget--separator
.PeopleListWidget__item:not(:last-child) {
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}

.PeopleListWidget__empty {
	padding: 18px;
	border: 1px dashed #bbbbbb;
	border-radius: 6px;
	color: #777777;
	text-align: center;
}

@media (max-width: 767px) {

	.PeopleListWidget__media {
		flex-basis: 72px;
		width: 72px;
	}

	.PeopleListWidget__image,
	.PeopleListWidget__placeholder {
		height: 58px;
	}
}