/* ─── Boat Specifications Widget ─────────────────────────────────────────── */

.fb-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 24px;
	align-items: start;
}

.fb-specs__col {
	min-width: 0;
}

.fb-specs__row {
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.fb-specs__label,
.fb-specs__value {
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.fb-specs {
		grid-template-columns: 1fr;
	}
}
