/* Gravity Forms live "Review Information" step — read-only summary rendered by
 * assets/bw-gf-review.js into a .bw-review container on the last form page.
 * Neutral styling that mirrors brentwood.ca's review layout: a small grey
 * label tag above each value, the value in a bordered white box. */

.bw-review-wrap {
	margin: 0;
}

.bw-review__heading {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: #1f2937;
}

.bw-review__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bw-review__item {
	display: flex;
	flex-direction: column;
}

.bw-review__label {
	align-self: flex-start;
	margin-bottom: 6px;
	padding: 3px 12px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	color: #6b7280;
	background: #eef0f2;
	border-radius: 6px;
}

.bw-review__value {
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.5;
	color: #1f2937;
	background: #fff;
	border: 1px solid #d8dadd;
	border-radius: 6px;
	word-break: break-word;
}

.bw-review__empty {
	margin: 0;
	padding: 12px 14px;
	font-size: 14px;
	color: #6b7280;
	background: #f7f8f9;
	border: 1px dashed #d8dadd;
	border-radius: 6px;
}
