/**
 * ATB Block: Vehicle About
 *
 * Назначение:
 * - компактный блок описания автомобиля на single vehicle;
 * - текст слева, большое изображение автомобиля справа;
 * - CSS не влияет на /fleet/ и другие блоки.
 *
 * Уникальные классы:
 * - .atb-vehicle-about
 */

.atb-vehicle-about {
	padding: 48px 0 52px;
	background: #ffffff;
}

.atb-vehicle-about__container {
	width: min(calc(100% - 40px), 1320px);
		max-width: 1320px;
		margin-right: auto;
		margin-left: auto;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	gap: 44px;
	align-items: center;
}

.atb-vehicle-about__content {
	max-width: 520px;
}

.atb-vehicle-about__title {
	margin: 0;
	font-size: clamp(28px, 2.7vw, 42px);
	line-height: 1.08;
	letter-spacing: -0.035em;
	color: #07111f;
}

.atb-vehicle-about__text {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.65;
	color: #26384f;
}

.atb-vehicle-about__checks {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.atb-vehicle-about__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.42;
	color: #07111f;
}

.atb-vehicle-about__check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border-radius: 999px;
	background: transparent;
	color: #07111f;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.atb-vehicle-about__media {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 320px;
}

.atb-vehicle-about__image {
	display: block;
	width: min(100%, 760px);
	height: auto;
	object-fit: contain;
}

@media (max-width: 980px) {
	.atb-vehicle-about {
		padding: 42px 0 46px;
	}

	.atb-vehicle-about__container {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.atb-vehicle-about__content {
		max-width: 680px;
	}

	.atb-vehicle-about__media {
		justify-content: center;
		min-height: 0;
	}

	.atb-vehicle-about__image {
		width: min(100%, 720px);
	}
}

@media (max-width: 768px) {
	.atb-vehicle-about {
		padding: 34px 0 40px;
	}

	.atb-vehicle-about__container {
		width: min(calc(100% - 32px), 100%);
		gap: 22px;
	}

	.atb-vehicle-about__title {
		font-size: clamp(26px, 9vw, 36px);
	}

	.atb-vehicle-about__text {
		font-size: 15px;
	}

	.atb-vehicle-about__check {
		font-size: 14px;
	}
}

/* ATB vehicle revision spacing */
.atb-vehicle-about {
	padding-top: 44px;
	padding-bottom: 38px;
}
