/* Yacht development polish: simplify summary row and balance final score row. */

/* Numbers subtotal is not strategically meaningful in traditional Yacht because
   there is no upper-section bonus. Keep the underlying value in controller state,
   but do not spend permanent UI space on it. */
.yahtzee-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yahtzee-info-grid .yahtzee-info-tile:nth-child(2) {
    display: none;
}

/* Lower section remains four columns for the first four categories. The final
   Choice + Yacht row uses equal half-width tiles to fill the row cleanly. */
.yahtzee-score-grid-lower > :nth-child(5),
.yahtzee-score-grid-lower > :nth-child(6) {
    grid-column: span 2;
}
