/**
 * ATB Block: Home Features Strip
 *
 * Назначение:
 * - крупный сохранённый блок преимуществ с карточками;
 * - сейчас не выводится на главной, но хранится для следующих ревизий;
 * - ширина задаётся глобальным .atb-container / .atb-container--wide;
 * - CSS блока отвечает только за визуал блока;
 * - без page-id/body-костылей и без глобальных селекторов.
 */

.atb-home-features-strip {
	position: relative;
	z-index: 5;
	margin-top: 0;
	padding: 34px 0 42px;
	background: linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
}
.atb-home-features-strip__container {
        width: min(calc(100% - 40px), 1320px);
        max-width: 1320px;
        margin-right: auto;
        margin-left: auto;
}


.atb-home-features-strip__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.atb-home-features-strip__item {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	min-height: 100px;
	padding: 20px 18px;
	border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.atb-home-features-strip__item:last-child {
	border-right: 0;
}

.atb-home-features-strip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: #05070b;
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(5, 7, 11, 0.16);
}

.atb-home-features-strip__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.atb-home-features-strip__body {
	min-width: 0;
}

.atb-home-features-strip__title {
	margin: 0 0 5px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.atb-home-features-strip__text {
	max-width: 150px;
	margin: 0;
	color: #64748b;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.38;
}

@media (max-width: 1200px) {
	.atb-home-features-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.atb-home-features-strip__item:nth-child(3n) {
		border-right: 0;
	}

	.atb-home-features-strip__item:nth-child(n + 4) {
		border-top: 1px solid rgba(15, 23, 42, 0.08);
	}

	.atb-home-features-strip__text {
		max-width: none;
	}
}

@media (max-width: 768px) {
        .atb-home-features-strip__container {
                width: min(calc(100% - 32px), 100%);
        }

	.atb-home-features-strip {
		padding: 28px 0;
	}

	.atb-home-features-strip__grid {
		grid-template-columns: 1fr;
	}

	.atb-home-features-strip__item {
		min-height: auto;
		padding: 18px;
		border-right: 0;
		border-top: 1px solid rgba(15, 23, 42, 0.08);
	}

	.atb-home-features-strip__item:first-child {
		border-top: 0;
	}
}
