/* ==========================================================================
   Reusable gold CTA button
   Usage:
     <a class="cta-button" href="#">
       Button label
       <span class="cta-button__arrow"> ...icon svg... </span>
     </a>
   The arrow span is optional.
   ========================================================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 20px 26px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ffd54d, #f5b820);
  color: #141414;
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 0 #d99a16;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta-button:hover { transform: translateY(-1px); box-shadow: 0 11px 0 #d99a16; }
.cta-button:active { transform: translateY(8px); box-shadow: 0 2px 0 #d99a16; }

.cta-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #141414;
  color: #fff;
}
