:root {
	--primary-color: #A6192E; /* = @color-red 'variables.less' */
	--primary-color-hover: color-mix(in srgb, var(--primary-color), white 20%);

	--fw-semibold: 600;
}


/* ==============
 *  Buttons
 * ============*/

.wp-block-button.is-style-btn-red .wp-block-button__link {
	text-align: center;
	font-size: 14px;
	font-weight: var(--fw-semibold);
    text-decoration: none;
	line-height: 14px;
	border-radius: 100px;
	padding: 20px;
	cursor: pointer;

	color: white;
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.wp-block-button.is-style-btn-red .wp-block-button__link:hover {
	color: white;
    text-decoration: none;
	background: var(--primary-color-hover);
	border: 1px solid var(--primary-color-hover);
}


