/**
 * CannaGreen Product Feature Strip widget.
 */

.cgx-product-feature-strip {
	width: 100%;
	border: 1px solid rgba(22, 63, 46, 0.10);
	border-radius: 12px;
	background: transparent;
	box-sizing: border-box;
}

.cgx-product-feature-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.cgx-product-feature-strip__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 0 24px;
	border-right: 1px solid rgba(22, 63, 46, 0.10);
}

.cgx-product-feature-strip__item:last-child {
	border-right: 0;
}

.cgx-product-feature-strip__icon {
	display: inline-flex;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(22, 63, 46, 0.18);
	border-radius: 999px;
	color: #163F2E;
	line-height: 1;
}

.cgx-product-feature-strip__icon svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.cgx-product-feature-strip__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.cgx-product-feature-strip__title {
	color: #163F2E;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.cgx-product-feature-strip__text {
	color: rgba(29, 29, 27, 0.62);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
}

@media (max-width: 1024px) {
	.cgx-product-feature-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cgx-product-feature-strip__item {
		padding: 14px 18px;
		border-right: 0;
		border-bottom: 1px solid rgba(22, 63, 46, 0.10);
	}

	.cgx-product-feature-strip__item:nth-last-child(-n+2) {
		border-bottom: 0;
	}
}

@media (max-width: 767px) {
	.cgx-product-feature-strip__grid {
		grid-template-columns: 1fr;
	}

	.cgx-product-feature-strip__item,
	.cgx-product-feature-strip__item:nth-last-child(-n+2) {
		padding: 14px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(22, 63, 46, 0.10);
	}

	.cgx-product-feature-strip__item:last-child {
		border-bottom: 0;
	}

	.cgx-product-feature-strip__title {
		font-size: 12px;
	}

	.cgx-product-feature-strip__text {
		font-size: 11px;
	}
}


/* Product feature strip no background 1.1.23 */
.cgx-product-feature-strip {
	background: transparent !important;
	background-color: transparent !important;
}


/* Product feature strip inner borders only 1.1.24 */
.cgx-product-feature-strip {
	border: 0 !important;
	box-shadow: none !important;
}

.cgx-product-feature-strip__item {
	border-right: 1px solid rgba(22, 63, 46, 0.10);
}

.cgx-product-feature-strip__item:last-child {
	border-right: 0 !important;
}

@media (max-width: 1024px) {
	.cgx-product-feature-strip__item {
		border-right: 0 !important;
		border-bottom: 1px solid rgba(22, 63, 46, 0.10);
	}

	.cgx-product-feature-strip__item:nth-last-child(-n+2) {
		border-bottom: 0 !important;
	}
}

@media (max-width: 767px) {
	.cgx-product-feature-strip__item,
	.cgx-product-feature-strip__item:nth-last-child(-n+2) {
		border-right: 0 !important;
		border-bottom: 1px solid rgba(22, 63, 46, 0.10) !important;
	}

	.cgx-product-feature-strip__item:last-child {
		border-bottom: 0 !important;
	}
}
