/* assets/css/blocks/teaser-about.css */
.seoms-about-teaser {
	background: #fafafa;
	padding: 68px 0;
	font-family: "MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.seoms-about-teaser__wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 40px;
}

.seoms-about-teaser__photo img {
	width: 160px;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
	flex-shrink: 0;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.seoms-about-teaser__content {
	flex: 1;
	min-width: 0;
}

.seoms-about-teaser__title {
	margin: 0 0 14px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 900;
	color: #111;
}

.seoms-about-teaser__lead {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	max-width: 640px;
}

.seoms-about-teaser__team {
	display: flex;
	align-items: center;
	gap: -8px;
	margin-bottom: 24px;
}

.seoms-about-teaser__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fafafa;
	margin-left: -12px;
}

.seoms-about-teaser__avatar:first-child {
	margin-left: 0;
}

.seoms-about-teaser__team-more {
	margin-left: -4px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #fafafa;
}

@media (max-width: 700px) {
	.seoms-about-teaser {
		padding: 0 0 44px;
	}

	.seoms-about-teaser__wrap {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		gap: 22px;
	}

	/* Фото вырывается из паддингов контейнера и растягивается на всю ширину экрана */
	.seoms-about-teaser__photo {
		position: relative;
		left: 50%;
		width: 100vw;
		max-width: 100vw;
		transform: translateX(-50%);
		margin-bottom: -2px;
	}

	.seoms-about-teaser__photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 4;
		object-position: center 15%;
		border-radius: 0;
		box-shadow: none;
	}

	.seoms-about-teaser__content {
		text-align: left;
	}

	.seoms-about-teaser__lead {
		max-width: none;
	}

	.seoms-about-teaser__team {
		justify-content: flex-start;
	}
}
