/* Desktop menu: two photo-led cards per row. Mobile controls stay unchanged. */
@media (min-width: 900px) {
  .menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
  }

  .menu-item,
  .menu-item:not(:has(.dish-photo)) {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    gap: 14px 20px;
    padding: 24px 0;
  }

  .menu-item .dish-photo {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
  }

  .menu-item .dish-name,
  .menu-item:not(:has(.dish-photo)) .dish-name {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    font-size: 23px !important;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .menu-item .dish-price,
  .menu-item:not(:has(.dish-photo)) .dish-price {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    font-size: 25px;
    line-height: 1.2;
  }

  .menu-item .menu-quantity {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    width: 94px;
    height: 36px;
    margin: 0;
  }
}
