/* Make the button content flex so text + icon align */
.wp-block-button.is-style-with-icon .wp-block-button__link {
    display: inline-flex;
    align-items: center;       /* vertical centring */
    gap: 5px;               /* space between text and icon */
	padding: 10px 0;
}

/* Inject the SVG icon */
.wp-block-button.is-style-with-icon .wp-block-button__link::after {
    content: "";
    display: inline-block;
    width: 30px;              /* adjust size as needed */
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/wp-content/uploads/2025/12/button-arrow.png');
	transition: transform 0.2s ease;
}

.wp-block-button.is-style-with-icon .wp-block-button__link:hover::after {
    transform: translateX(3px);
}
