/* ════════════════════════════════════════════════════
   hwaon_cta_tokens.css — CTA 라이트/다크 토큰 SSOT
   wrapper 클래스: .cta-mode-light (홈 cream) / .cta-mode-dark (랜딩 navy)
   버튼은 두 모드 모두 오렌지(액션 컬러), 골드는 아이브로·아바타 링 등 악센트 전용
   ════════════════════════════════════════════════════ */

.cta-mode-light {
    --cta-bg:          var(--hw-cream, #F5F0EB);
    --cta-text:        var(--hw-navy, #1B2A4A);
    --cta-text-sub:    var(--hw-text-sub, #6B6B6B);
    --cta-eyebrow:     var(--hw-gold, #C9A96E);
    --cta-avatar-ring: var(--hw-gold, #C9A96E);
    --cta-btn-bg:      var(--hw-orange, #EA5514);
    --cta-btn-bg-hover:#C63E0A;
    --cta-btn-text:    #ffffff;
    --cta-link:        var(--hw-orange, #EA5514);
    --cta-border:      rgba(27,42,74,0.12);
}

.cta-mode-dark {
    --cta-bg:          var(--hw-navy, #1B2A4A);
    --cta-text:        #ffffff;
    --cta-text-sub:    rgba(255,255,255,0.72);
    --cta-eyebrow:     var(--hw-gold, #C9A96E);
    --cta-avatar-ring: var(--hw-gold, #C9A96E);
    --cta-btn-bg:      var(--hw-orange, #EA5514);
    --cta-btn-bg-hover:#C63E0A;
    --cta-btn-text:    #ffffff;
    --cta-link:        rgba(255,255,255,0.88);
    --cta-border:      rgba(255,255,255,0.18);
}

/* ── 공유 컴포넌트: 8인 아바타 스트립 ── */
.cta-team-strip {
    text-align: center;
    margin-bottom: 22px;
}
.cta-team-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 10px;
    flex-wrap: wrap;
}
.cta-team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cta-avatar-ring, #C9A96E);
    box-shadow: 0 2px 8px rgba(27,42,74,0.12);
    transition: transform 0.4s cubic-bezier(.19,1,.22,1), box-shadow 0.4s cubic-bezier(.19,1,.22,1);
}
.cta-team-avatar:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 14px rgba(201,169,110,0.32);
}
.cta-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cta-team-label {
    font-size: 12px;
    color: var(--cta-text-sub);
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 0;
}

/* ── 공유 컴포넌트: 준법 문구 ── */
.cta-compliance-note {
    font-size: 12px;
    color: var(--cta-text-sub);
    line-height: 1.6;
    margin: 14px 0 0;
}
.cta-compliance-recaptcha {
    font-size: 11px;
    color: var(--cta-text-sub);
    line-height: 1.5;
    margin: 8px 0 0;
    opacity: 0.78;
}
.cta-compliance-link {
    color: var(--cta-link);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cta-compliance-link:hover {
    text-decoration: none;
}

/* ── 모바일 분기 ── */
@media (max-width: 768px) {
    .cta-team-avatars {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 10px;
        justify-content: center;
    }
    .cta-team-avatar {
        width: 54px;
        height: 54px;
    }
    .cta-team-label {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}
