.link__button {
  background-color: var(--button_background);
  color: var(--button_text_color);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 54px;
  padding: 0 30px;
  border-radius: 38px;
  font-size: 14px;
  transition: transform .2s ease-in-out;
}

.link__button:hover {
  transform: translateZ(50px) scale(1.1);
  background-color: var(--button_hover_bg);
  color: var(--button_hover_text_color);
}

.link__button svg {
  width: 22px;
  font-weight: 700;
  fill: var(--primary);
}