.sdgce-guide-list {
	margin: clamp(28px, 4vw, 56px) auto;
	max-width: 1200px;
	width: min(100%, calc(100vw - 32px));
}

.sdgce-guide-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sdgce-guide-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0 0 24px;
}

.sdgce-guide-filters a {
	background: #fff;
	border: 1px solid #dceaf2;
	border-radius: 999px;
	color: #0d4d8b;
	font-size: 13px;
	font-weight: 800;
	padding: 10px 14px;
	text-decoration: none;
}

.sdgce-guide-filters a:hover,
.sdgce-guide-filters a.is-active {
	background: #0d4d8b;
	border-color: #0d4d8b;
	color: #fff;
}

.sdgce-guide-card {
	background: #fff;
	border: 1px solid #dceaf2;
	border-radius: 14px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.sdgce-guide-card:hover {
	box-shadow: 0 24px 52px rgba(13, 77, 139, 0.16);
	transform: translateY(-4px);
}

.sdgce-guide-media {
	aspect-ratio: 1200 / 628;
	background: #f7fafc;
	display: block;
	overflow: hidden;
}

.sdgce-guide-image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
	width: 100%;
}

.sdgce-guide-card:hover .sdgce-guide-image {
	transform: scale(1.035);
}

.sdgce-guide-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.sdgce-guide-meta,
.sdgce-guide-footer {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.sdgce-guide-meta span {
	background: #effafc;
	border: 1px solid #c5edf3;
	border-radius: 999px;
	color: #0d4d8b;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
}

.sdgce-guide-meta time,
.sdgce-guide-footer span {
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.sdgce-guide-title {
	color: #0f172a;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.18;
	margin: 0;
}

.sdgce-guide-title a {
	color: inherit;
	text-decoration: none;
}

.sdgce-guide-title a:hover {
	color: #0d4d8b;
}

.sdgce-guide-excerpt {
	color: #475569;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.sdgce-guide-footer {
	border-top: 1px solid #e6eef4;
	margin-top: auto;
	padding-top: 14px;
}

.sdgce-guide-button {
	background: #0d4d8b;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	padding: 12px 16px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.sdgce-guide-button:hover {
	background: #11b5c9;
	color: #fff;
	transform: translateY(-1px);
}

.sdgce-guide-pagination {
	margin-top: 32px;
}

.sdgce-guide-pagination ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sdgce-guide-pagination a,
.sdgce-guide-pagination span {
	align-items: center;
	background: #fff;
	border: 1px solid #dceaf2;
	border-radius: 10px;
	color: #0f172a;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 40px;
	min-width: 40px;
	padding: 0 12px;
	text-decoration: none;
}

.sdgce-guide-pagination .current {
	background: #0d4d8b;
	border-color: #0d4d8b;
	color: #fff;
}

@media (max-width: 1024px) {
	.sdgce-guide-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.sdgce-guide-list {
		width: min(100%, calc(100vw - 24px));
	}

	.sdgce-guide-grid {
		grid-template-columns: 1fr;
	}

	.sdgce-guide-body {
		padding: 18px;
	}

	.sdgce-guide-meta,
	.sdgce-guide-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.sdgce-guide-button {
		text-align: center;
		width: 100%;
	}
}
