/**
 * ATB Block: Service Benefits Strip
 *
 * Назначение:
 * - отдельная строка преимуществ под hero;
 * - не относится к блоку карточек услуг home-services;
 * - уникальный класс блока: .atb-service-benefits-strip.
 */

.atb-service-benefits-strip {
	background: #ffffff;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	color: #0f172a;
}

.atb-service-benefits-strip__container {
	width: min(calc(100% - 40px), 1320px);
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	padding-top: 0;
	padding-bottom: 0;
}

.atb-service-benefits-strip__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 74px;
	padding: 18px 22px;
	border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.atb-service-benefits-strip__item:last-child {
	border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.atb-service-benefits-strip__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(15, 23, 42, 0.28);
	border-radius: 999px;
	color: #0f172a;
}

.atb-service-benefits-strip__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.atb-service-benefits-strip__content {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.atb-service-benefits-strip__title {
	color: #020617;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.atb-service-benefits-strip__text {
	color: #475569;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}

@media (max-width: 1180px) {
	.atb-service-benefits-strip__container {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.atb-service-benefits-strip__item:nth-child(3n) {
		border-right: 1px solid rgba(15, 23, 42, 0.08);
	}
}

@media (max-width: 768px) {
	.atb-service-benefits-strip__container {
		width: min(calc(100% - 32px), 100%);
		grid-template-columns: 1fr;
	}

	.atb-service-benefits-strip__item {
		min-height: auto;
		padding: 16px 20px;
		border-right: 1px solid rgba(15, 23, 42, 0.08);
	}
}
