/* VerbNow Print — article print button (on-page part only).
 * The print preview itself is styled inside the generated window, not from here.
 */

.vbp-article-actions {
	margin: 28px 0 8px;
	display: flex;
	justify-content: center;
}

.vbp-article-print {
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 11px 22px;
	border-radius: 50px;
	border: 1.5px solid #1a1410;
	background: transparent;
	color: #1a1410;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.vbp-article-print:hover { background: #1a1410; color: #fff; }
.vbp-article-print:focus-visible { outline: 3px solid #1a73e8; outline-offset: 2px; }

@media print {
	.vbp-article-actions { display: none !important; }
}
