/* === Button Normalize (cross-browser, mobile-safe) === */
button,
a[class*="btn"],
[class*="btn"],
a.cta, .cta, .cta-btn {
  display: inline-block !important;
  width: auto !important;
  max-width: 260px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  flex: 0 0 auto !important; /* don't stretch in flex rows */
}

/* Prevent full-width on mobile containers */
button, a[class*="btn"], .cta, .cta-btn {
  align-self: center;
}

/* Keep anchors looking like buttons if already styled */
a[class*="btn"], .cta, .cta-btn {
  color: inherit;
}

/* Optional: consistent hover feedback without changing layout */
button:hover,
a[class*="btn"]:hover,
.cta:hover, .cta-btn:hover { 
  opacity: .92;
}

/* Fix iOS Safari extra padding on <button> */
button::-moz-focus-inner { border: 0; padding: 0; }
