.grid {
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 100px 
}

.card {
	background: #eee;
	padding: 15px; border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
	max-width: 22em;
}

.card p {
	white-space: pre-line; 
}

.card img { 
	width: 100%;
	height: 200px; object-fit: cover;
	border-radius: 4px; 
}

.price {
	color: #27ae60; font-weight: bold; font-size: 1.2em; margin: 10px 0;
}