| .card { | |
| @apply bg-white shadow-lg rounded-lg overflow-hidden; | |
| img { | |
| @apply w-full h-48 object-cover; | |
| } | |
| .card-content { | |
| @apply p-4; | |
| h2 { @apply text-xl font-semibold text-gray-800; } | |
| p { @apply mt-2 text-gray-600; } | |
| button { | |
| @apply mt-4 bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600; | |
| } | |
| } | |
| } |