/* Блок «Источники поиска кандидатов» — стили для превью вёрстки */
.wt-sources {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin: 48px 0 0;
	box-sizing: border-box;
}

.wt-sources__left {
	flex: 1 1 48%;
	min-width: 0;
	padding-right: 24px;
}

.wt-sources__right {
	flex: 1 1 52%;
	min-width: 0;
	padding-left: 32px;
	border-left: 1px solid #e4e4e4;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wt-sources__title {
	margin: 0 0 12px;
	font-family: Arial, sans-serif;
	font-size: 26px;
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	color: #1a1a1a;
}

.wt-sources__chart {
	position: relative;
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
}

.wt-sources__chart svg {
	display: block;
	width: 100%;
	height: auto;
}

.wt-sources__pcts {
	font-weight: 700;
}

.wt-sources__core {
	position: absolute;
	/* Центр кольца в SVG: (200, 200) при viewBox 400×380 */
	top: 52.63%;
	left: 50%;
	width: 28%;
	height: 0;
	padding-bottom: 28%;
	margin: 0;
	border-radius: 50%;
	background: #0a6964;
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.wt-sources__core img {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 52%;
	height: 52%;
	object-fit: contain;
	transform: translate(-50%, -50%);
}

.wt-sources__highlight {
	padding: 20px 22px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.wt-sources__highlight-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.wt-sources__pct-lg {
	flex-shrink: 0;
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	color: #b5d44a;
}

.wt-sources__highlight-text {
	margin: 4px 0 0;
	font-family: 'Circe', Verdana, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.35;
	color: #555;
}

.wt-sources__highlight-text strong {
	font-family: Arial, sans-serif;
	font-weight: 700;
	color: #222;
}

.wt-sources__highlight-text .wt-sources__accent {
	font-family: Arial, sans-serif;
	font-weight: 700;
	color: #b5d44a;
}

.wt-sources__subtitle {
	margin: 22px 0 10px;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #222;
}

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

.wt-sources__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-family: 'Circe', Verdana, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.35;
	color: #444;
}

.wt-sources__item:last-child {
	border-bottom: 0;
}

.wt-sources__item:before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	margin-right: 10px;
	flex-shrink: 0;
	align-self: center;
	border-radius: 50%;
	background: #b5d44a;
}

.wt-sources__name {
	flex: 1 1 auto;
	min-width: 0;
}

.wt-sources__item-pct {
	flex-shrink: 0;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 800;
	color: #0a6964;
}

@media (max-width: 991px) {
	.wt-sources {
		flex-direction: column;
		margin-top: 36px;
	}

	.wt-sources__left {
		padding-right: 0;
	}

	.wt-sources__right {
		padding-left: 0;
		padding-top: 8px;
		border-left: 0;
	}

	.wt-sources__title {
		font-size: 22px;
		text-align: center;
	}

	.wt-sources__chart {
		max-width: 320px;
	}
}

@media (max-width: 767px) {
	.wt-sources {
		margin-top: 28px;
	}

	.wt-sources__title {
		font-size: 18px;
		text-align: left;
	}

	.wt-sources__chart {
		max-width: 300px;
	}

	/* Выноски на узком экране наезжают друг на друга — проценты есть в списке справа */
	.wt-sources__chart .wt-sources__callouts,
	.wt-sources__chart .wt-sources__pcts {
		display: none;
	}

	.wt-sources__core img {
		width: 52% !important;
		height: 52% !important;
	}

	.wt-sources__pct-lg {
		font-size: 34px;
	}

	.wt-sources__highlight-text {
		font-size: 14px;
	}

	.wt-sources__item {
		font-size: 13px;
		padding: 7px 0;
	}

	.wt-sources__item-pct {
		font-size: 14px;
	}
}
