# Feature Cards Compact

> Render dense secondary feature cards.

Canonical HTML: https://press.varavel.com/docs/shortcodes/feature-cards-compact/
Markdown: https://press.varavel.com/docs/shortcodes/feature-cards-compact/index.md

`feature_cards_compact` is a tighter grid for long capability lists that should stay visually calm.

## When to Use

Use it after a main feature section when you need to show breadth without large cards.

## Usage

```markdown
{{/* feature_cards_compact(title="Also included", item_1_title="Search") */}}
```

## Live Example

{{ feature_cards_compact(
container="md",
title="Also included",
columns="4",
item_1_icon="search",
item_1_title="Search",
item_1_desc="Find content quickly.",
item_2_icon="file-text",
item_2_title="Docs",
item_2_desc="Reference-ready pages.",
item_3_icon="code",
item_3_title="Code",
item_3_desc="Developer-friendly output.",
item_4_icon="globe",
item_4_title="Global",
item_4_desc="Works across landing use cases."
) }}

## Parameters

| Parameter      | Description                                  |
| -------------- | -------------------------------------------- |
| `container`    | Inner content width.                         |
| `eyebrow`      | Small uppercase label above the heading.     |
| `title`        | Section heading.                             |
| `description`  | Supporting copy.                             |
| `columns`      | Desktop columns. Use `2`, `3`, or `4`.       |
| `item_N_icon`  | Optional icon for item `N`.                  |
| `item_N_title` | Item title, up to 8.                         |
| `item_N_desc`  | Item description.                            |
| `bg`           | Full-width section background token.         |
| `class`        | Additional CSS classes on the outer section. |
