/* Карточка председателя: фотография, обращение и подпись. */

.chairman-section {
	padding: 36px 0;
	background: var(--color-bg-v2);
}

.chairman-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(280px, 350px) 1fr;
	align-items: stretch;
	gap: 30px;
	padding: 22px 26px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-dark);
	background: linear-gradient(90deg, rgba(244, 248, 243, 0.95) 0%, rgba(250, 252, 249, 0.95) 55%, rgba(244, 248, 243, 0.95) 100%);
}


/* Фото */

.chairman-photo {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 15px;
}

.chairman-photo img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}


/* Контент */

.chairman-content {
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 2;
	max-width: 790px;
}

.chairman-content .section-heading {
	margin-bottom: 18px;
}

.chairman-text {
	font-weight: 400;
	font-family: var(--font-montserrat);
	color: #4d4d4d;
}

.chairman-text p {
	margin: 0 0 13px;
}

.chairman-text p:last-child {
	margin-bottom: 0;
}


/* Подпись */
.chairman-signature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 18px;
	font-family: var(--font-montserrat);
	color: #4d4d4d;
}

.chairman-signature strong {
	margin: 2px 0;
	font-weight: 700;
	color: #252525;
}


/* Декоративные горы справа */

.chairman-decoration {
	position: absolute;
	z-index: 1;
	right: 24px;
	bottom: 18px;
	width: 290px;
	opacity: 0.7;
	pointer-events: none;
}

.chairman-decoration img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 760px) {
	.chairman-card {
		grid-template-columns: 1fr;
	}

	.chairman-decoration {
		display: none;
	}
}
