/* Name and price on one line, the description below across both columns. */
[qcms-mod="cont.luca.menu.item"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .3rem 1.5rem;

  b { font-weight: 500 }
  .price { white-space: nowrap }

  small {
    grid-column: 1 / -1;
    font-size: .85rem;
    line-height: 1.45;
    color: color-mix(in srgb, var(--color), var(--color-bg) 20%);
  }
}
