/**
 * Блок reb/experts-hero (блок 02 страницы «Эксперты»).
 * Темный герой с крошками, H1, лидом и двумя кнопками.
 * Фон пока без фото: градиент с затемнением слева (позже под ним
 * будет фото img/foto-1-39.jpg, высота блока по макету 460px).
 */

.reb-experts-hero {
	position: relative;
	color: #fff;
	background: linear-gradient(96deg, var(--reb-text) 0%, #17573A 55%, var(--reb-plate) 100%);
}

.reb-experts-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 48, 36, 0.6) 0%, rgba(20, 48, 36, 0) 60%);
	pointer-events: none;
}

.reb-experts-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 18px;
	min-height: 460px;
	padding-top: 44px;
	padding-bottom: 44px;
}

/* Крошки на темном фоне. */
.reb-experts-hero__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.reb-experts-hero__crumb {
	color: #CFE6D9;
}

.reb-experts-hero__crumb:hover {
	color: #fff;
}

.reb-experts-hero__crumb + .reb-experts-hero__crumb::before {
	content: '/';
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.45);
}

.reb-experts-hero__crumb--current {
	color: rgba(255, 255, 255, 0.55);
}

.reb-experts-hero__title {
	margin: 0;
	max-width: 700px;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #fff;
}

.reb-experts-hero__lead {
	margin: 0;
	max-width: 560px;
	font-size: 16px;
	line-height: 1.6;
	color: #DCEFE3;
}

.reb-experts-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.reb-experts-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

.reb-experts-hero__btn--outline {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.reb-experts-hero__btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

/* Адаптив: на мобильном герой ниже (по макету фото 220px). */
@media (max-width: 768px) {
	.reb-experts-hero__inner {
		min-height: 0;
		padding-top: 32px;
		padding-bottom: 36px;
		gap: 14px;
	}

	.reb-experts-hero__title {
		font-size: 28px;
		line-height: 1.15;
	}

	.reb-experts-hero__lead {
		font-size: 15px;
	}

	.reb-experts-hero__btn {
		flex: 1 1 100%;
	}
}
