.button {
    padding: 0.75rem 1rem;
    display: flex;
    border-radius: 12px;
    width: fit-content;
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: background-color 0.2s;
}

.button--arrow{
    display: flex;
    align-items: center;
    gap: 1rem;

    img {
        height: 0.75rem;
    }
}

/* .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-100% - 1rem);
  width: calc(100% + 1rem);
  border-radius: 0 2rem 2rem 0;
  height: 100%;
  background-color: var(--blue);
  z-index: -1;
  transition: left 0.3s ease;
}

.button:hover::after {
    left: 0;
} */

@media (max-width: 532px) {
    .button {
        padding: 1rem 2rem;
    }
}