/* Container spacing */
.cta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

/* Base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: inherit;
}

/* Visually disabled button */
.btn.disabled {
  opacity: .78;
  background-color: #d9dde8;
  color: #252b38;
  cursor: not-allowed;
}

/* Simple badge for "Soon" */
.soon-badge {
  background-color: #4d5668;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
