You want to mix large and small font sizes within each item.
You can use a combination of the height property and layout: card to display the contents of the first column(s) in a larger size, followed by one to 3 lines of data in each item.
Download the finished sample Klip.
This article covers the minimum amount of code that is required in order to achieve the layout, using a very simple set of data. For information on how you can integrate this layout with currency symbols, icons, mini charts, etc., see the "What's next?" section below.
In this article, you will find out how to create a Klip whose layout looks like this using a very simple example Klip.

Each item in a Klip using the caption layout has a consecutive series of columns in large display (at the height of 2 or 3), followed by one single column (and no more) containing rows of data at height: 1 that would normally be displayed in individual columns.
<row>
<col1>1</col1>
<col2>2</col2>
<col3>3</col3>
<col4>4</col4>
<col5>5</col5>
</row>
...
1. First, write a basic Klip.
We'll start with a very basic example Klip that includes a static data source in its <contentsource> for this example.

<style>
col1 {
itemcol: 1;
height: 3;
}
col2 {
itemcol: 2;
height: 3;
}
</style>
Save and reload the Klip.

Note how the 5 columns are side by side just like any other regular Klip at this point.
row {
type: item;
definition: all;
layout: card;
}
When the Klip is saved and reloaded, it should look like this:

Now the last 3 columns are displayed as 3 rows within each item.
type: number;
format: "decimal(2)";
emphasis: strong;
The data in the itemcol in which the above has been added will be treated as a number and displayed in bold with 2 decimal places, while others are unchanged from before. In that column, note that the data that is originally text (e.g. "three", "four", "five") is displayed as 0.00 when using type: number.
Here's what the Klip would look like if you added the settings to col5:

As demonstrated in step 4 above, you can apply formatting to any column, just like Klips whose columns are displayed side by side. Refer to the relevant how-to articles to find out how to format values in a given column.
Here's a list of some of the formats that our users have asked about: