/* VideoTripper offer detail — hotfix 2026-08-07.
   globals.css contains a marketplace-only rule `.max-w-md > header + div`
   that makes the first div after any header sticky at top:72px. On /offer,
   that div is the main photo hero, so the rule pushes it down and exposes
   the grey page background as a visible band. Keep the marketplace behavior,
   but explicitly neutralize it for the unique offer hero signature. */
.max-w-md > header:not(.sticky) + div.relative.-mt-px {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
}
