.wp-block-buttons {
	.wp-block-button {
		.wp-block-button__link {
			transition: background-color 0.3s ease-in-out,
			color 0.3s ease-in-out;
		}

		&:not(.is-style-outline) {
			.wp-block-button__link {
				color: var(--wp--preset--color--white);
				&:hover {
					background-color: var(--wp--preset--color--custom-green-500);
				}

				&:focus,
				&:active &:focus-visible {
					outline: none;
					background-color: var(--wp--preset--color--custom-green-500);
					box-shadow: 0 0 0 1px var(--wp--preset--color--custom-green-500);
				}
			}
		}

		&.is-style-outline {
			.wp-block-button__link {
				background-color: var(--wp--preset--color--custom-brown-50);
				display: flex;
				align-items: center;
				gap: 8px;

				&::after {
					content: '';
					display: inline-block;
					width: 12px;
					height: 12px;
					background-image: url('data:image/svg+xml,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.833333 7.16042H10.1417L6.075 11.2271C5.75 11.5521 5.75 12.0854 6.075 12.4104C6.4 12.7354 6.925 12.7354 7.25 12.4104L12.7417 6.91875C13.0667 6.59375 13.0667 6.06875 12.7417 5.74375L7.25833 0.24375C6.93333 -0.08125 6.40833 -0.08125 6.08333 0.24375C5.75833 0.56875 5.75833 1.09375 6.08333 1.41875L10.1417 5.49375H0.833333C0.375 5.49375 0 5.86875 0 6.32708C0 6.78542 0.375 7.16042 0.833333 7.16042Z" fill="%23443636"/></svg>');
					background-repeat: no-repeat;
					background-size: contain;
					background-position: center;
					transition: all 250ms ease;
				}

				&:hover {
					color: #443636;
					box-shadow: none;
					background-color: var(--wp--preset--color--custom-green-100);

					&::after {
						background-image: url('data:image/svg+xml,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.833333 7.16042H10.1417L6.075 11.2271C5.75 11.5521 5.75 12.0854 6.075 12.4104C6.4 12.7354 6.925 12.7354 7.25 12.4104L12.7417 6.91875C13.0667 6.59375 13.0667 6.06875 12.7417 5.74375L7.25833 0.24375C6.93333 -0.08125 6.40833 -0.08125 6.08333 0.24375C5.75833 0.56875 5.75833 1.09375 6.08333 1.41875L10.1417 5.49375H0.833333C0.375 5.49375 0 5.86875 0 6.32708C0 6.78542 0.375 7.16042 0.833333 7.16042Z" fill="%23443636"/></svg>');
					}

				}

				&:focus,
				&:active &:focus-visible {
					outline: none;
					color: #443636;
					box-shadow: none;
					background-color: var(--wp--preset--color--custom-green-100);

					&::after {
						background-image: url('data:image/svg+xml,<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.833333 7.16042H10.1417L6.075 11.2271C5.75 11.5521 5.75 12.0854 6.075 12.4104C6.4 12.7354 6.925 12.7354 7.25 12.4104L12.7417 6.91875C13.0667 6.59375 13.0667 6.06875 12.7417 5.74375L7.25833 0.24375C6.93333 -0.08125 6.40833 -0.08125 6.08333 0.24375C5.75833 0.56875 5.75833 1.09375 6.08333 1.41875L10.1417 5.49375H0.833333C0.375 5.49375 0 5.86875 0 6.32708C0 6.78542 0.375 7.16042 0.833333 7.16042Z" fill="%23443636"/></svg>');
					}

				}
			}

		}
	}
}
