/* Page PDF Export — View/Download module */
.ppe-download-module {
	margin: 28px 0;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #f9fafb;
	overflow: hidden;
}
.ppe-download-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	flex-wrap: wrap;
}
.ppe-download-icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #374151;
}
.ppe-download-text {
	flex: 1 1 200px;
	min-width: 0;
}
.ppe-download-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #111827;
	margin-bottom: 2px;
}
.ppe-download-desc {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
}
.ppe-download-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 14px;
}
.ppe-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	line-height: 1;
	transition: filter .15s ease;
	white-space: nowrap;
}
.ppe-view-btn:hover,
.ppe-view-btn:focus { color: inherit; }
.ppe-dl-link {
	font-size: 13px;
	font-weight: 600;
	text-decoration: underline;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.ppe-download-inner { gap: 12px; }
	.ppe-download-actions { width: 100%; }
	.ppe-view-btn { flex: 1 1 auto; justify-content: center; }
}
