/**
 * Блок reb/experts-quote (блок 05 страницы «Эксперты»).
 * Темный блок цитаты гендиректора с фото-заглушкой (520px).
 */

.reb-experts-quote {
	color: #fff;
	background: var(--reb-text);
}

.reb-experts-quote__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	padding-top: 56px;
	padding-bottom: 56px;
}

.reb-experts-quote__photo-wrap {
	flex: 0 0 320px;
	width: 320px;
}

.reb-experts-quote__photo {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.reb-experts-quote__photo--placeholder {
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 14px, rgba(255, 255, 255, 0.02) 14px 28px);
}

.reb-experts-quote__body {
	flex: 1;
	min-width: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.reb-experts-quote__kicker {
	color: #7FD6A6;
}

.reb-experts-quote__text {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.reb-experts-quote__extra {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #CFE6D9;
}

.reb-experts-quote__author {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 6px;
}

.reb-experts-quote__name {
	font-size: 16px;
	font-weight: 800;
	color: #7FD6A6;
}

.reb-experts-quote__role {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* Адаптив: фото над текстом. */
@media (max-width: 1024px) {
	.reb-experts-quote__inner {
		flex-wrap: wrap;
	}

	.reb-experts-quote__photo-wrap {
		flex: 0 0 260px;
		width: 260px;
	}
}

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

	.reb-experts-quote__photo-wrap {
		flex: 0 0 200px;
		width: 200px;
	}

	.reb-experts-quote__text {
		font-size: 21px;
	}
}
