/* ── Global button style ──────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #111;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.15s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 4px solid transparent;
}

.btn:hover {
  background: #F192FF;
  color: #111;
  border-color: #111;
  opacity: 1;
}

/* ── Global text link style ──────────────────────── */
.text-link {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover { opacity: 0.6; }
