.ax-product-benefits,
.ax-product-benefits * {
	box-sizing: border-box;
}

.ax-product-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	margin: 26px 0 32px;
}

.ax-product-benefit {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 76px;
	padding: 13px 12px;
	background: #fff;
	border: 1px solid #e8e9ec;
	border-radius: 14px;
	box-shadow: 0 7px 22px rgba(15, 35, 63, 0.055);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ax-product-benefit:hover {
	border-color: rgba(198, 156, 88, 0.55);
	box-shadow: 0 9px 26px rgba(15, 35, 63, 0.08);
}

.ax-product-benefit__icon {
	display: inline-flex;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-right: 11px;
	color: #0e294a;
	background: #fbf6ed;
	border: 1px solid rgba(198, 156, 88, 0.48);
	border-radius: 50%;
}

.ax-product-benefit__icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ax-product-benefit__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}

.ax-product-benefit__content strong {
	margin: 0;
	color: #0e294a;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.ax-product-benefit__content small {
	display: block;
	margin-top: 4px;
	color: #707987;
	font-size: 11.5px;
	font-weight: 400;
	line-height: 1.3;
}

@media (max-width: 1100px) and (min-width: 768px) {
	.ax-product-benefits {
		grid-template-columns: 1fr;
	}

	.ax-product-benefit {
		min-height: 68px;
	}
}

@media (max-width: 767px) {
	.ax-product-benefits {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 22px 0 26px;
	}

	.ax-product-benefit {
		min-height: 66px;
		padding: 11px 13px;
	}

	.ax-product-benefit__icon {
		flex-basis: 38px;
		width: 38px;
		height: 38px;
	}

	.ax-product-benefit__content strong {
		font-size: 14px;
	}

	.ax-product-benefit__content small {
		font-size: 12px;
	}
}
