.salient-pdf-button {
	--salient-pdf-bg: #f0f9fb;
	--salient-pdf-icon-color: currentColor;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
	text-decoration: none;
	background-color: var(--salient-pdf-bg);
	color: inherit;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 15px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.salient-pdf-button:hover,
.salient-pdf-button:focus {
	filter: brightness(0.98);
	box-shadow: 0 8px 24px rgba(24, 35, 45, 0.08);
	transform: translateY(-1px);
	text-decoration: none;
}

.salient-pdf-button:focus-visible {
	outline: 2px solid #638bb3;
	outline-offset: 2px;
}

.salient-pdf-button__title {
	flex: 1 1 auto;
	min-width: 0;
	word-break: break-word;
}

.salient-pdf-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--salient-pdf-icon-color);
	flex: 0 0 auto;
}

.salient-pdf-button__icon i {
	font-size: 28px;
	line-height: 1;
}

@media (max-width: 768px) {
	.salient-pdf-button {
		gap: 10px;
	}
}
