.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.92rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-family-text);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  text-decoration: none;
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 182, 125, 0.18);
}

.big {
  min-height: 58px;
  padding: 1rem 1.9rem;
  font-size: 1rem;
}

.primary-button {
  color: var(--surface);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.primary-button:hover {
  color: var(--surface);
  border-color: #0d1726;
  background: #0d1726;
  box-shadow: none;
}

.secondary-button,
.tertiary-button {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
}

.secondary-button:hover,
.tertiary-button:hover {
  color: var(--ink);
  border-color: rgba(21, 38, 61, 0.22);
  background: var(--surface);
  box-shadow: none;
}

@media (max-width: 480px) {
  .button,
  .big {
    white-space: normal;
  }
}
