Different post styles depending on category

If your theme has body_class() in the body tag (normally in header.php) then the category name is added to the body tag as a class e.g.

<body class="my-category">

So in a css file you can do

.my-category #my-element {
 background:#FF0000;
}

To edit the html for the categories to make them card layouts then you would need to edit the category.php file (or create one if your theme is missing it).

Put the html for the cards in the_loop