---
name: accordion-group
title: Accordion Group
components:
  - sd-accordion
  - sd-accordion-group
  - sd-headline
  - sd-headline--size-xl
  - sd-media
  - sd-paragraph
  - sd-prose
version: 1.0.0
---

## Template: Accordion Group with White Background

```html
<div class="bg-white p-8">
  <sd-accordion-group>
    <sd-accordion summary="Shareholder structure">
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/collaboration.jpg"
          alt="Two men in business attire sitting on a sofa in a modern office, smiling and looking at a laptop screen."
        />
      </figure>
      <p class="sd-paragraph mt-4">
        Union Investment is the dedicated asset manager within the German cooperative financial network. All
        shareholders are also part of the network, which ensures a stable and long-term ownership structure. This allows
        us to maintain a sustainable business model and develop strong, long-term client relationships.
      </p>
    </sd-accordion>
    <sd-accordion summary="Cooperative financial network">
      <h3 class="sd-headline sd-headline--size-xl mb-4">
        Union Investment is the asset manager within the German cooperative financial Network.
      </h3>
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/coins.jpg"
          alt="Close-up of hands stacking coins into small piles on a table, suggesting financial planning or saving."
        />
      </figure>
    </sd-accordion>
    <sd-accordion summary="Investment philosophy">
      <div class="sd-prose">
        <p>
          Our investment philosophy is based on our belief that markets are inefficient. Long-term outperformance is,
          therefore, best achieved through a combination of fundamental research, actively managed security selection
          and robust risk management. This conviction lies at the heart of all our investment solutions. We offer a
          transparent investment process, which allows clients to keep track of our investment decisions.
        </p>
        <p>
          We take an integrated approach to portfolio management, with every portfolio manager also acting as a senior
          research specialist. This structure enhances the team's commitment to the process and helps to ensure
          accountability for investment performance.
        </p>
      </div>
    </sd-accordion>
  </sd-accordion-group>
</div>
```

## Template: Accordion Group with Neutral-100 Background

```html
<div class="bg-neutral-100 p-8">
  <sd-accordion-group>
    <sd-accordion summary="Shareholder structure">
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/collaboration.jpg"
          alt="Two men in business attire sitting on a sofa in a modern office, smiling and looking at a laptop screen."
        />
      </figure>
      <p class="sd-paragraph mt-4">
        Union Investment is the dedicated asset manager within the German cooperative financial network. All
        shareholders are also part of the network, which ensures a stable and long-term ownership structure. This allows
        us to maintain a sustainable business model and develop strong, long-term client relationships.
      </p>
    </sd-accordion>
    <sd-accordion summary="Cooperative financial network">
      <h3 class="sd-headline sd-headline--size-xl mb-4">
        Union Investment is the asset manager within the German cooperative financial Network.
      </h3>
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/coins.jpg"
          alt="Close-up of hands stacking coins into small piles on a table, suggesting financial planning or saving."
        />
      </figure>
    </sd-accordion>
    <sd-accordion summary="Investment philosophy">
      <div class="sd-prose">
        <p>
          Our investment philosophy is based on our belief that markets are inefficient. Long-term outperformance is,
          therefore, best achieved through a combination of fundamental research, actively managed security selection
          and robust risk management. This conviction lies at the heart of all our investment solutions. We offer a
          transparent investment process, which allows clients to keep track of our investment decisions.
        </p>
        <p>
          We take an integrated approach to portfolio management, with every portfolio manager also acting as a senior
          research specialist. This structure enhances the team's commitment to the process and helps to ensure
          accountability for investment performance.
        </p>
      </div>
    </sd-accordion>
  </sd-accordion-group>
</div>
```

## Template: Accordion Group with Primary-100 Background

```html
<div class="bg-primary-100 p-8">
  <sd-accordion-group>
    <sd-accordion summary="Shareholder structure">
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/collaboration.jpg"
          alt="Two men in business attire sitting on a sofa in a modern office, smiling and looking at a laptop screen."
        />
      </figure>
      <p class="sd-paragraph mt-4">
        Union Investment is the dedicated asset manager within the German cooperative financial network. All
        shareholders are also part of the network, which ensures a stable and long-term ownership structure. This allows
        us to maintain a sustainable business model and develop strong, long-term client relationships.
      </p>
    </sd-accordion>
    <sd-accordion summary="Cooperative financial network">
      <h3 class="sd-headline sd-headline--size-xl mb-4">
        Union Investment is the asset manager within the German cooperative financial Network.
      </h3>
      <figure class="sd-media">
        <img
          class="w-full aspect-ratio"
          src="./placeholders/images/coins.jpg"
          alt="Close-up of hands stacking coins into small piles on a table, suggesting financial planning or saving."
        />
      </figure>
    </sd-accordion>
    <sd-accordion summary="Investment philosophy">
      <div class="sd-prose">
        <p>
          Our investment philosophy is based on our belief that markets are inefficient. Long-term outperformance is,
          therefore, best achieved through a combination of fundamental research, actively managed security selection
          and robust risk management. This conviction lies at the heart of all our investment solutions. We offer a
          transparent investment process, which allows clients to keep track of our investment decisions.
        </p>
        <p>
          We take an integrated approach to portfolio management, with every portfolio manager also acting as a senior
          research specialist. This structure enhances the team's commitment to the process and helps to ensure
          accountability for investment performance.
        </p>
      </div>
    </sd-accordion>
  </sd-accordion-group>
</div>
```
