.gaby-btn a {
border-radius: 0;
font-weight: 500;
letter-spacing: 0.1em;
background-color: #afbf86;
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.gaby-btn a:hover {
color: #fff;
}
.gaby-btn a::after {
content: "";
width: 18px;
height: 18px;
display: inline-block;
background-color: currentColor;
flex: 1 0 auto;
-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M13 6L19 12L13 18' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
-webkit-mask-size: contain;
mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M13 6L19 12L13 18' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
transition: transform 0.2s ease;
}
.gaby-btn a:hover::after {
transform: translateX(4px);
}