How to add vertical space between some lines in a grid cell?

In grid cell 2 (the right cell), I want to add vertical space before the “Company Name” and also before the date in the following code. I was thinking of two ways:

  1. Add space between lines in the same paragraph but knowing that the first few lines of the paragraph should have the standard spacing. I don’t know how to vary inter-line spacing inside the same paragraph.
  2. Transform that single paragraph into 3 paragraphs with inter-paragraph spacing. I don’t know how to group those 3 paragraphs inside the grid cell.

Could you help me?

#grid(
  columns: (4cm, auto),
  align: (left, center),
  gutter: 5mm,
  lorem(15),
  par[
    #text(17pt, [This is the title: #lorem(20)]) \
    #text(14pt, [Company Name]) \
    #text(14pt, "2025-07-11")
	]
)

Hi there,

You could adjust spacing between paragraphs. The grid here is irrelevant (see the blue stroke). Paragraph Function – Typst Documentation

This is a quick solution just readjusting the paragraphs (your option 2) and removing the manual linebreaks:

#set grid.cell(stroke: blue)

#grid(
  columns: (4cm, auto),
  align: (left, center),
  gutter: 5mm,
  lorem(15),
  [
    #par(spacing: 1.2em, text(17pt, [This is the title: #lorem(20)]))
    #par(spacing: 2em, text(14pt, [Company Name]))
    #par(spacing: 2em, text(14pt, "2025-07-11"))
  ],
)

A third option is changing the vertical spaces between grid cells. It requires a few changes and uses the row-gutter parameter:

#set grid.cell(stroke: blue)
#grid(
  columns: (4cm, auto),
  align: (left, center),
  gutter: 5mm,
  row-gutter: 10mm, // <- to adjust grid cell size
  grid.cell(rowspan:3, lorem(15)),
  text(17pt, [This is the title: #lorem(20)]),
  text(14pt, [Company Name]),
  text(14pt, "2025-07-11"),
)

EDIT: I see you have updated your post. I have provided you with option 2 and a 3rd option which is change the spacing between grid cells.