.cgr-library {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.cgr-library-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-family: "Syne", sans-serif;
	color: #0b132b;
}

.cgr-library-heading span {
	font-size: 1.25rem;
	font-weight: 700;
}

.cgr-library-heading strong {
	font-size: .8rem;
	color: #028074;
}

.cgr-resource-list {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.cgr-resource {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
}

.cgr-file-mark {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #e3f7f5;
	color: #028074;
	font-family: "Syne", sans-serif;
	font-size: .75rem;
	font-weight: 800;
}

.cgr-resource-copy h3 {
	margin: 0 0 .25rem;
	font-family: "Syne", sans-serif;
	font-size: .95rem;
	color: #0b132b;
}

.cgr-resource-copy p {
	margin: 0;
	color: #475569;
	font-size: .82rem;
	line-height: 1.5;
}

.cgr-resource-meta {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
	margin-top: .45rem;
	color: #64748b;
	font-size: .72rem;
}

.cgr-download-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: .65rem 1rem;
	border-radius: 8px;
	background: #0b132b;
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	text-decoration: none;
}

.cgr-download-button:hover {
	background: #00a896;
	color: #fff;
}

@media (max-width: 640px) {
	.cgr-resource {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.cgr-file-mark {
		width: 48px;
		height: 48px;
	}

	.cgr-download-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

