I am working on a project that involves creating a list using an accordion feature to display names of individuals. When a user clicks on a person, I want the dropdown content to show their image and vcard details. How can I structure the content so that the image appears on the right side with the vcard information next to it on the left? I am utilizing the existing Foundation framework for this task. Thank you.
<div class="accordion-content">
<img src="http://thumb9.shutterstock.com/display_pic_with_logo/1294/108451796/stock-photo-friendly-male-doctor-at-the-gym-smiling-108451796.jpg" alt="PCP" style="width:304px;height:228px">
<ul class="vcard">
<li class="fn">Gaius Baltar</li>
<li class="street-address">123 Colonial Ave.</li>
<li class="locality">Caprica City</li>
<li><span class="state">Caprica</span>, <span class="zip">12345</span></li>
<li class="email"><a href="#"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f196df93909d859083b194889090c819d94df929e9c">[email protected]</a></a></li>
</ul>
</div>