/* Actual app captures must not lose their UI to cover-cropping. */
.game-image.official-capture-frame { background: #edf1f6; }
.game-image.official-capture-frame img,
.studio-games img.official-capture { object-fit: contain; object-position: center; background: #edf1f6; }
.game-card:hover .official-capture-frame img { transform: none; }
.cortex-preview img[src*="/official-media/"] { min-height: 0; height: auto; object-fit: contain; }
/* The desktop fifth-card centering rule previously created implicit columns on mobile. */
@media (max-width: 980px) {
  .games-grid > .game-card:last-child:nth-child(4n+1) { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .games-grid { grid-template-columns: minmax(0, 1fr); }
  .games-grid > .game-card,
  .games-grid > .game-card:last-child:nth-child(4n+1) { grid-column: 1 / -1; min-width: 0; }
}
