/**
 * Product page: fill empty right column when product has few attributes.
 * Keeps layout and structure consistent for all products.
 */

.product-key-info {
	margin-top: 1.5rem;
	padding: 1.25rem 0;
	border-top: 1px solid #e1e1e1;
	clear: both;
}

.product-key-info__excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #606060;
	margin-bottom: 1rem;
}

.product-key-info__excerpt p:last-child {
	margin-bottom: 0;
}

.product-key-info__meta {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.35rem 1.25rem;
	margin: 0;
	font-size: 14px;
}

.product-key-info__meta dt {
	margin: 0;
	font-weight: 600;
	color: #201f1f;
}

.product-key-info__meta dd {
	margin: 0;
	color: #606060;
}

@media (min-width: 992px) {
	.woocommerce .product-view .single-product-info {
		display: flex;
		flex-direction: column;
		min-height: 1px;
	}

	.product-key-info {
		margin-top: auto;
		padding-top: 1.5rem;
	}
}
