You can use CSS to create equal-width columns for the card layout by specifying the width or percentage for each column. Here's an example:
.column {
width: 33.33%;
}
In this example, the CSS code sets the width of each column to 33.33% so that they occupy an equal portion of the container's width. Adjust the percentage as needed to achieve the desired column width.