/* A book's specification list
 *
 * As the dev site has it, measured 2026-09-04: under a keyline 40px below
 * the buy panel, labels in 11.2px tracked small caps on a 105px column,
 * values at 14.4px beside them, both in #444.
 */

.saqi-book-specs {
	display: grid;
	gap: 0.25rem;
	margin: 2.5rem 0 0;
	padding-top: 2.5rem;
	border-top: 1px solid var(--wp--preset--color--rule);
	font-family: var(--wp--preset--font-family--sans);
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--muted);
}

.saqi-book-specs__item {
	display: grid;
	grid-template-columns: 6.5rem minmax(0, 1fr);
	gap: 0.5rem;
	align-items: baseline;
}

.saqi-book-specs__label {
	font-size: var(--wp--preset--font-size--3-xs);
	font-weight: 600;
	letter-spacing: var(--wp--custom--tracking--caps);
	text-transform: uppercase;
}

.saqi-book-specs__label::after {
	content: ":";
}

.saqi-book-specs__value {
	margin: 0;
}

/* Until an edition is chosen there is no ISBN to give. */
.saqi-book-specs__placeholder {
	font-style: italic;
}

/* An eBook has no extent; `view.js` hides the row, and the grid would not. */
.saqi-book-specs__item[hidden] {
	display: none;
}
