/* Buttons Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: clamp(11px, 0.68vw, 13px);
  line-height: 1.23;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--cta {
  background-color: #ffffff; /* Figma: 흰색 배경 */
  color: #0159fd; /* Figma: 파란색 텍스트 */
  width: 300px;
  height: 80px;
  border-radius: 1000px; /* Figma: 완전히 둥근 모서리 */
  font-weight: 600; /* Figma: Pretendard SemiBold */
  font-size: 22px;
  line-height: 1.4; /* Figma: 30.8px / 22px ≈ 1.4 */
  letter-spacing: 0;
  padding: 0; /* 크기로 직접 제어 */
}

.btn--cta:hover {
  opacity: 0.9;
}

.btn--cta:active {
  opacity: 0.8;
}
