<style>
/* -- The root styles must go in the element of the structure with the name "Card". --*/
/* Counter styles for each of the cards */
.card-cookbookai-tools-posthero-cards__wrapper{
counter-increment: item;
/* -- Counter styles -- */
/* In "content" of the pseudo-element, "decimal-leading-zero" is used so that it has a 0 in each number */
.card-cookbookai-tools-posthero-cards:before{
content: counter(item, decimal-leading-zero);
font-size: var(--text-xl);
font-weight: 700;
color: var(--neutral);
line-height:120%;
}
}
</style>