/* Welcome Page Grid Layout */

.examples-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.example-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	background: #fff;
}

.example-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.example-emoji {
	font-size: 24px;
	margin-right: 10px;
}

.example-header a {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}

.example-description {
	margin: 15px 0;
	line-height: 1.5;
}

.example-tags {
	margin-top: 15px;
}

.tag {
	background: #f0f0f0;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	margin: 0.1rem;
	break-inside: avoid;
}
