/**
 * Urgency messaging — 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-urgency-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #16a34a;
        background: rgba(22, 163, 74, 0.08);
        border: 1px solid rgba(22, 163, 74, 0.2);
        border-radius: 20px;
        padding: 6px 14px;
        margin-top: 10px;
        animation: hales-urgency-pulse 2.5s ease-in-out infinite;
        width: fit-content;
    }
    .hales-urgency-badge--hero {
        margin: 12px auto 0;
    }
    @media (min-width: 1200px) {
        .hales-urgency-badge--hero {
            margin: 12px 0 0;
        }
    }
    .hales-urgency-dot {
        width: 8px;
        height: 8px;
        background: #16a34a;
        border-radius: 50%;
        flex-shrink: 0;
    }
    @keyframes hales-urgency-pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
