.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0.82rem 1.05rem;
  font-weight: 720;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button svg,
.text-link svg,
.contact-methods svg,
.clean-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  color: var(--paper-strong);
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(23, 32, 31, 0.16);
}

.button-solid:hover {
  background: var(--teal-dark);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(23, 32, 31, 0.12);
}

.button-ghost:hover {
  background: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-dark);
  font-weight: 780;
  border-bottom: 1px solid currentColor;
}
