/**
 * AAW PrimeElectricDepot Addons — Specifications List widget styles
 */

.aaw-spec-list {
	--aaw-spec-columns: 2;
	--aaw-spec-border-color: #e4e7ec;

	display: grid !important;
	grid-template-columns: repeat( var( --aaw-spec-columns ), 1fr );
	width: 100%;
	border-top: 1px solid var( --aaw-spec-border-color );
	border-left: 1px solid var( --aaw-spec-border-color );
	background: #ffffff;
	box-sizing: border-box;
}

.aaw-spec-item {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding: 16px 20px;
	border-right: 1px solid var( --aaw-spec-border-color );
	border-bottom: 1px solid var( --aaw-spec-border-color );
	background-color: #ffffff;
	box-sizing: border-box;
	min-width: 0;
}

.aaw-spec-heading {
	flex: 1 1 auto;
	margin-right: auto;
	font-weight: 700;
	color: #1a2b4a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.aaw-spec-detail {
	flex: 0 0 auto;
	color: #5b6b82;
	text-align: right;
	word-break: break-word;
}

/* Editor-only notice shown when the widget has no visible items */
.aaw-ped-editor-notice {
	padding: 14px 18px;
	border: 1px dashed #c9ccd1;
	border-radius: 6px;
	color: #6b7280;
	font-size: 13px;
	background: #f9fafb;
}
