/* Reusable JP&Brimelow button — used by the [jpb_button] shortcode (inside and outside modules) */
.jpb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 38px;
	padding: 0 1.2rem;
	border: 1px solid #c9b6d6;
	border-radius: 3px;
	background: #fff;
	color: #771878;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s, color 0.15s;
}

.jpb-btn:hover,
.jpb-btn:focus {
	background: #771878;
	color: #fff;
	text-decoration: none;
}

.jpb-btn--icon {
	min-width: 38px;
	padding: 0;
}

.jpb-btn svg {
	width: 16px;
	height: 16px;
	display: block;
}
