fix: cinema mode — description beside ring, comments under description

Cinema grid now mirrors the non-watch desktop layout below the video:
  row 1: video (full viewport width)
  row 2: description | product-right (price + download + Up Next)
  row 3: comments   | product-right (continues, spans 2 rows)

Previously description took full width and purchase/comments
shared row 3. Fox wants the ring visible alongside the description
so viewers see Up Next while reading, and comments stacked below
description in the same column.
This commit is contained in:
russell@unturf.com 2026-04-22 13:29:38 -04:00
parent 1ee956b95f
commit 157134ab60

View file

@ -1799,11 +1799,11 @@ textarea.markup-editor-textarea {
max-width: 100%;
padding-left: 20px;
padding-right: 20px;
grid-template-columns: 1fr 1fr;
grid-template-columns: 2fr 1fr;
grid-template-areas:
"images images"
"description description"
"purchase comments";
"description purchase"
"comments purchase";
gap: 24px;
align-items: start;
}