# Features List

> Render a split feature section with a supporting panel.

Canonical HTML: https://press.varavel.com/docs/shortcodes/features-list/
Markdown: https://press.varavel.com/docs/shortcodes/features-list/index.md

`features_list` combines one explanatory panel with a vertical list of feature rows.

## When to Use

Use it when the section needs more explanation than a grid allows, or when one concept supports several detailed capabilities.

## Usage

```markdown
{{/* features_list(
title="Designed for maintainers",
item_1_icon="workflow",
item_1_title="Local configuration",
item_1_desc="Keep each section configured where it is used."
) */}}
```

## Live Example

{{ features_list(
container="md",
title="Designed for maintainers",
description="Keep pages explicit and easy to review.",
panel_title="Locality of behavior",
panel_desc="Shortcode parameters live with the content that uses them.",
item_1_icon="workflow",
item_1_title="Local configuration",
item_1_desc="Keep each section configured where it is used.",
item_2_icon="layout-dashboard",
item_2_title="Predictable layout",
item_2_desc="Use the same container scale across sections."
) }}

## Parameters

| Parameter      | Description                                            |
| -------------- | ------------------------------------------------------ |
| `container`    | Inner content width for the split feature section.     |
| `eyebrow`      | Small uppercase label above the heading.               |
| `title`        | Section heading.                                       |
| `description`  | Supporting copy in the side panel.                     |
| `panel_title`  | Title inside the supporting panel.                     |
| `panel_desc`   | Description inside the supporting panel.               |
| `panel_icon`   | Icon shown at the top of the supporting panel.         |
| `item_N_icon`  | Optional icon for list item `N`.                       |
| `item_N_title` | Title for list item `N`.                               |
| `item_N_desc`  | Description for list item `N`.                         |
| `reverse`      | Set to `true` to swap panel and list order on desktop. |
| `bg`           | Full-width section background token.                   |
| `class`        | Additional CSS classes on the outer section.           |
