/* =========================================================
   V292 — Completed draw public viewing order
   Result first, winner second, details below.
   No theme colors are changed.
   ========================================================= */

/*
  Normal prepared draw state keeps its existing order.
  These rules apply only after the draw has a winner.
*/

.draw-v262-shell.draw-v292-completed {
  display: grid;
}

/* Official result and champion remain first. */
.draw-v292-completed .draw-v262-hero {
  order: 10;
}

/* Winner appears immediately after the official result. */
.draw-v292-completed .draw-v262-winner {
  order: 20;
}

/* Remaining statistics and proof appear below the winner. */
.draw-v292-completed .draw-v262-stats {
  order: 30;
}

.draw-v292-completed .draw-v262-proof {
  order: 40;
}

/* Any alert remains above the page content. */
.draw-v292-completed .draw-v262-alert {
  order: 1;
}

/*
  Defensive rule:
  the prize banner must never appear on the draw page,
  even if an older cached template still includes it.
*/
body.draw-page-v262 .draw-v262-prize {
  display: none !important;
}

@media (max-width: 760px) {
  .draw-v292-completed .draw-v262-winner {
    margin-top: 0;
  }

  .draw-v292-completed .draw-v262-stats,
  .draw-v292-completed .draw-v262-proof {
    margin-top: 0;
  }
}
