/*
 * Layout fixes for legacy WordPress snapshots.
 *
 * Loaded by `(gp-old)/_legacy-page.tsx` after the per-page `scoped.css`, so it survives
 * a re-snapshot of any page. Content is never touched here — only broken layout.
 *
 * `.portfolio_polzug` (polzug, lhoist), `.portfolio_nexterio` and `.portfolio_opel` are
 * Bootstrap 3 templates: a floated `.col-sm-*` holds the image, a centered `.container`
 * holds the copy that is meant to sit next to it. The theme later loads Bootstrap 4,
 * whose `.row { display: flex }` wins the cascade — and a flex container cannot wrap
 * around a float, so every text column drops below its image. Restoring `display: block`
 * on `.row` puts the copy back beside the artwork. The same bug is live on greenparrot.pl.
 */

.legacy-page .old-gp .portfolio_polzug .row,
.legacy-page .old-gp .portfolio_nexterio .row,
.legacy-page .old-gp .portfolio_opel .row {
  display: block;
}
