/* When the legacy homepage grid holds 4 room cards (3 rooms + Койко-место),
   the bundle's built-in 3-column desktop grid would leave the 4th card
   stranded alone in a new row. Switch to a balanced 2x2 layout instead.
   Scoped to >1100px only: the bundle's own responsive rules already collapse
   the grid to 2 columns at <=1100px and to a single stacked column at
   <=800px, so this must not touch those breakpoints. */
@media (min-width: 1101px) {
  .room-grid[data-loft-room-count="4"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
