I am sorry for my late reply. Generally this is just CSS and if it is CSS, you can modify all. You just need skill with css and inspector tool. Here is the general guide to this issue:
You generate card inside a div
<div class="reduceSize">
<?php SimpleCard::create(...);?>
</div>
You create style tag in your html
<style>
.reduceSize .card
{
width:50% !important;
}
<style>
You will need the inspector tool of browser to see the structure of card and to choose the element to make modification to your need.
Regards,