What is the general goal of the feature?
To make printing of reports more readable
What are the most likely user stories for how and when this would be used by someone on your team?
When I print a report, I want the survey question, graphics, and results to all be on the same page for ease of reading.
How useful would this feature be to other users or organizations?
Basically everyone would benefit from this
What can you contribute to making this feature a reality?
All you need to do is modify the style for div class “.report-view__item” to include break-inside: avoid. In other words, something like this:
.report-view__item {
break-inside: avoid;
}