/**
 * Блок reb/experts (блок 09 главной): карточки экспертов.
 */

.reb-experts {
	padding: 72px 0;
}

.reb-experts__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.reb-experts__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.reb-experts__title {
	margin: 0;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.reb-experts__more {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

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

.reb-expert-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--reb-text);
}

.reb-expert-card:hover {
	color: var(--reb-text);
}

.reb-expert-card:hover .reb-expert-card__name {
	color: var(--reb-accent);
}

.reb-expert-card__photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 260px;
	margin-bottom: 10px;
	border: 1px solid #CDDCD3;
	object-fit: cover;
	background: var(--reb-bg);
}

.reb-expert-card__photo--stub {
	background: repeating-linear-gradient(45deg, #EFF6F1 0 10px, #E1EDE5 10px 20px);
	font-family: var(--reb-font-mono);
	font-size: 11px;
	color: #66786D;
	text-align: center;
	padding: 12px;
}

.reb-expert-card__name {
	font-size: 18px;
	font-weight: 700;
	transition: color 0.2s;
}

.reb-expert-card__position {
	font-size: 14px;
	color: var(--reb-text-muted);
}

.reb-expert-card__credentials {
	font-family: var(--reb-font-mono);
	font-size: 12px;
	color: var(--reb-accent);
}

@media (max-width: 1024px) {
	.reb-experts {
		padding: 56px 0;
	}
}

@media (max-width: 768px) {
	.reb-experts {
		padding: 44px 0;
	}

	.reb-experts__title {
		font-size: 26px;
	}

	.reb-experts__grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px 16px;
	}

	.reb-expert-card__photo {
		height: 210px;
	}
}

@media (max-width: 480px) {
	.reb-experts__grid {
		grid-template-columns: 1fr;
	}

	.reb-expert-card__photo {
		height: 240px;
	}
}
