/**
 * Social-proof CTA — extracted from frontend.php in Phase 3 PR 13.
 *
 * Markup is rendered alongside the related wp_footer hook in
 * frontend.php; only the <style> block was extracted here.
 */

    .hales-social-proof-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #d4af37 !important;
        margin-top: 14px;
        justify-content: center;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    .hales-social-proof-cta span {
        color: #d4af37 !important;
    }
    @media (max-width: 767px) {
        .hales-social-proof-cta {
            display: none;
        }
    }
    @media (min-width: 1200px) {
        .hales-social-proof-cta {
            justify-content: flex-start;
        }
    }
    .hales-social-proof-cta .stars {
        color: #fbbf24 !important;
        letter-spacing: 1px;
        font-size: 14px;
    }
    .hales-social-proof-cta .g-icon {
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }
    .hales-social-proof-cta .g-icon svg {
        width: 12px;
        height: 12px;
    }
