.mesp-pb-buttons {
	display: flex;
	gap: 12px;
	margin: 16px 0 8px;
	flex-wrap: wrap;
	clear: both;
}
.mesp-pb-btn {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	text-decoration: none !important;
	border: 2px solid #111;
	background: #fff;
	color: #111;
	transition: opacity .2s ease, filter .2s ease;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
}
.mesp-pb-btn:hover {
	opacity: 0.88;
	filter: brightness(0.95);
	text-decoration: none !important;
}
.mesp-pb-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}
.mesp-pb-text {
	display: inline-block;
}
@media (max-width: 480px) {
	.mesp-pb-buttons {
		gap: 8px;
	}
	.mesp-pb-btn {
		min-height: 42px;
		padding: 10px 12px;
		font-size: 13px;
	}
}
