.sdg-events-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 24px;
}

.sdg-events-tile {
	display: block;
	width: 130px;
	transition: transform .15s ease;
}

.sdg-events-tile:hover {
	transform: translateY(-3px);
}

.sdg-events-tile img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.sdg-events-back {
	display: inline-block;
	margin-bottom: 16px;
	text-decoration: none;
	font-weight: 600;
}

.sdg-events-category-header {
	display: flex;
	align-items: center;
	gap: 14px;
	background-color: var(--sdg-color, #333);
	color: #fff;
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.sdg-events-category-header img {
	width: 56px;
	height: 56px;
	border-radius: 4px;
}

.sdg-events-category-header h2 {
	margin: 0;
	color: #fff;
}

.sdg-events-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}

.sdg-events-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.sdg-events-card-thumb img {
	display: block;
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.sdg-events-card-body {
	padding: 12px 14px;
}

.sdg-events-card-body h3 {
	margin: 0 0 6px;
	font-size: 16px;
}

.sdg-events-card-body p {
	margin: 0;
	font-size: 13px;
	opacity: .8;
}

.sdg-events-empty {
	opacity: .7;
}

.sdg-events-badges {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
}

.sdg-events-badge-icon {
	width: 64px;
	height: 64px;
	border-radius: 4px;
}
