<section class="py-8">
  <div class="container mx-auto px-4">
    <figure class="<%= block.props?.align === 'center' ? 'text-center' : '' %>">
      <img 
        src="<%= block.props?.src || '/placeholder.jpg' %>" 
        alt="<%= block.props?.alt || '' %>"
        class="<%= block.props?.fullWidth ? 'w-full' : 'max-w-2xl mx-auto' %> rounded-lg shadow-md"
      >
      <% if (block.props?.caption) { %>
      <figcaption class="text-gray-500 text-sm mt-3"><%= block.props.caption %></figcaption>
      <% } %>
    </figure>
  </div>
</section>
