.keelin-product-pdf-downloads {
	margin: 2.5rem 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.keelin-product-pdf-downloads h4 {
	margin: 0 0 1.25rem;
	color: #273478;
}
.keelin-pdf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
	width: 100%;
}
.keelin-pdf-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
}
.keelin-pdf-card-cover {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 1px solid #e2e6f0;
	border-radius: 4px;
	overflow: hidden;
	background: #f0f2f7;
}
.keelin-pdf-card-cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.keelin-pdf-card-cover--empty::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3rem;
	height: 3.75rem;
	margin: -1.875rem 0 0 -1.5rem;
	border: 2px solid #c5cdd9;
	border-radius: 3px;
	background: #e8ecf2;
	box-sizing: border-box;
}
.keelin-pdf-card-cover--empty::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.5rem;
	height: 0.2rem;
	margin: -0.1rem 0 0 -0.75rem;
	background: #c5cdd9;
}
.keelin-pdf-card-title {
	margin: 0;
	color: #273478;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}
.keelin-pdf-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 0.55rem 1.1rem;
	border: none;
	border-radius: 4px;
	background: #d5222a;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.keelin-pdf-view-btn:hover,
.keelin-pdf-view-btn:focus {
	background: #b81c23;
	color: #fff;
	text-decoration: none;
}
