/**
 * Single product benefits styles.
 *
 * Location: /assets/css/frontend/product/single/benefits.css
 *
 * @package SunTechPortal
 */

.stp-product-single__benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
}

.stp-product-single__benefits:empty {
	display: none;
}

.stp-product-single__benefits div {
	display: grid;
	gap: 3px;
	align-content: center;
	min-height: 78px;
	padding: 16px;
	border-right: 1px solid var(--stp-product-border);
}

.stp-product-single__benefits div:last-child {
	border-right: 0;
}

.stp-product-single__benefits strong {
	color: var(--stp-product-text);
	font-size: 14px;
	font-weight: 950;
	line-height: 1.25;
}

.stp-product-single__benefits span {
	color: var(--stp-product-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

@media screen and (max-width: 900px) {
	.stp-product-single__benefits {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	
		.stp-product-single__benefits div:nth-child(2n) {
			border-right: 0;
		}
	
		.stp-product-single__benefits div:nth-child(-n+2) {
			border-bottom: 1px solid var(--stp-product-border);
		}
}

@media screen and (max-width: 680px) {
	.stp-product-single__benefits {
			grid-template-columns: 1fr;
		}
	
		.stp-product-single__benefits div {
			border-right: 0;
			border-bottom: 1px solid var(--stp-product-border);
		}
	
		.stp-product-single__benefits div:last-child {
			border-bottom: 0;
		}
}
