/* Shared styles for the review / response card tiles and their nested author replies.
   Loaded by every page that renders the games/partials/_reviewCard, _responseCard or
   _reviewReply partials (game detail, /games/reviews/, profile), so these small tweaks
   live in one place instead of being copy-pasted inline per template. */

/* Author response nested under a review: text sits tight under its header line, and
   markdown paragraphs inside don't add a trailing gap. */
.review-author-reply p { margin-bottom: 0.25rem; }
.review-author-reply > div > *:last-child { margin-bottom: 0; }

/* No trailing gap between the end of the review text and whatever follows it. */
.review-text > *:last-child { margin-bottom: 0; }
