.is-style-btn-with-arrow a {
  color: var(--wp--preset--color--garden-brown);
  background-color: transparent;
  border: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
}

/* Add the arrow */
.is-style-btn-with-arrow .wp-element-button::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(/wp-content/themes/owg/assets/icons/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  left: 0;
  transition: left ease 0.5s;
}

/* Animate the arrow on hover */
.is-style-btn-with-arrow .wp-element-button:hover::after {
  left: 6px;
}