.button_link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.button_link:hover {
  color: var(--color-ink-700);
}

.button_link_light {
  color: var(--color-text-inverse);
}

.button_link_light:hover {
  color: var(--color-white-40);
}

.button_link svg {
  flex-shrink: 0;
  transition: fill 0.3s ease;
}

.button_link_title {
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}
