/**
 * Блок reb/about-text (блок 04 страницы «О компании»).
 * Текст + врезка цитаты гендиректора + карточка «Кто подписывает отчет».
 */

.reb-about-text {
	background: #fff;
}

.reb-about-text__inner {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding-top: 56px;
	padding-bottom: 56px;
}

/* Текстовая колонка. */
.reb-about-text__main {
	flex: 1;
	min-width: 0;
}

.reb-about-text__heading {
	margin: 10px 0 18px;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.reb-about-text__paragraph {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--reb-text-muted);
}

/* Правая колонка. */
.reb-about-text__side {
	flex: 0 0 400px;
	width: 400px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Врезка с цитатой. */
.reb-about-text__quote {
	margin: 0;
	padding: 26px 28px;
	background: var(--reb-text);
	color: #fff;
}

.reb-about-text__quote-text {
	margin: 0 0 16px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.reb-about-text__quote-author {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.reb-about-text__quote-name {
	font-size: 15px;
	font-weight: 800;
	color: #7FD6A6;
}

.reb-about-text__quote-role {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* Карточка «Кто подписывает отчет». */
.reb-about-text__signers {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 26px;
	background: var(--reb-bg);
	border: 1px solid var(--reb-border);
}

.reb-about-text__signers-title {
	font-family: var(--reb-font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--reb-text-faint);
}

.reb-about-text__signer {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.reb-about-text__signer-name {
	font-size: 16px;
	font-weight: 800;
}

.reb-about-text__signer-info {
	font-size: 13px;
	line-height: 1.5;
	color: var(--reb-text-muted);
}

.reb-about-text__experts-link {
	font-size: 14px;
	font-weight: 700;
}

/* Адаптив. */
@media (max-width: 1024px) {
	.reb-about-text__inner {
		flex-wrap: wrap;
	}

	.reb-about-text__side {
		flex: 1 1 100%;
		width: auto;
	}
}

@media (max-width: 768px) {
	.reb-about-text__inner {
		padding-top: 40px;
		padding-bottom: 40px;
		gap: 28px;
	}

	.reb-about-text__heading {
		font-size: 24px;
	}
}
