/**
 * Блок reb/experts-team (блок 04 страницы «Эксперты»).
 * Сетка карточек экспертов: 3 колонки по 320px, 4-я переносит строку.
 */

.reb-experts-team {
	background: #fff;
}

.reb-experts-team__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 56px;
	padding-bottom: 56px;
}

.reb-experts-team__heading {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.reb-experts-team__subheading {
	margin: 0 0 14px;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--reb-text-muted);
}

.reb-experts-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.reb-experts-team__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--reb-border);
}

/* Фото 4:5 (портрет 552x640 по ТЗ). */
.reb-experts-team__photo {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: var(--reb-bg);
}

.reb-experts-team__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--reb-border);
	background: repeating-linear-gradient(45deg, var(--reb-bg) 0 14px, #E7EFE9 14px 28px);
}

.reb-experts-team__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px 22px;
}

.reb-experts-team__name {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.25;
}

.reb-experts-team__position {
	font-size: 14px;
	font-weight: 700;
	color: var(--reb-accent);
}

.reb-experts-team__facts {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.5;
	color: var(--reb-text-muted);
}

.reb-experts-team__facts li {
	padding-left: 16px;
	position: relative;
}

.reb-experts-team__facts li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--reb-accent);
}

.reb-experts-team__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin-top: auto;
	padding-top: 10px;
}

.reb-experts-team__ask {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 700;
	background: var(--reb-accent);
	color: #fff;
	transition: background 0.2s;
}

.reb-experts-team__ask:hover {
	background: var(--reb-accent-dark);
	color: #fff;
}

.reb-experts-team__more {
	font-size: 14px;
	font-weight: 700;
}

/* Адаптив. */
@media (max-width: 1024px) {
	.reb-experts-team__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.reb-experts-team__inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.reb-experts-team__heading {
		font-size: 24px;
	}

	.reb-experts-team__grid {
		grid-template-columns: 1fr;
	}

	/* Компактное фото на мобильном. */
	.reb-experts-team__photo {
		aspect-ratio: 16 / 10;
	}
}
