:root {
  --brand: #EDB921;
  --brand2: #C99514;
  --text: #121212;
  --line: #ece7dd;
}

/* Buttons */
.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 999px;

  border: 1px solid transparent;
  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
  white-space: nowrap;

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .08s ease;
}

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

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--brand);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, .10);
}

.btn.primary:hover {
  background: var(--brand2);
  color: #1a1a1a;
}

.btn.ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .20);
  color: #fff;
}

.btn.outline {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn.outline:hover {
  background: #f8f8f8;
}