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

.stp-product-single__info-table {
	display: grid;
	gap: 0;
	margin: 0;
	border: 1px solid var(--stp-product-border);
	border-radius: 10px;
	overflow: hidden;
}

.stp-product-single__info-table div {
	display: grid;
	grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.15fr);
	gap: 12px;
	margin: 0;
	padding: 11px 12px;
	background: #fff;
	border-bottom: 1px solid var(--stp-product-border);
}

.stp-product-single__info-table div:nth-child(odd) {
	background: var(--stp-product-bg-soft);
}

.stp-product-single__info-table div:last-child {
	border-bottom: 0;
}

.stp-product-single__info-table dt,
.stp-product-single__info-table dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.stp-product-single__info-table dt {
	color: var(--stp-product-muted);
	font-weight: 950;
}

.stp-product-single__info-table dd {
	color: var(--stp-product-text);
	font-weight: 800;
	overflow-wrap: anywhere;
}

@media screen and (max-width: 680px) {
	.stp-product-single__info-table div {
			grid-template-columns: 1fr;
			gap: 4px;
		}
}
