/* ============================================================
   Sticky CTA Bar — desktop only
   ============================================================ */

.blog-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: 1px solid rgba(230, 150, 88, 0.25);
}

.blog-sticky-bar.visible {
    transform: translateY(0);
}

.blog-sticky-bar-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #faf9f6;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.blog-sticky-bar-cta {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a0a0f;
    background: #E69658;
    padding: 9px 22px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-sticky-bar-cta:hover {
    background: #D08545;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 150, 88, 0.3);
}

.blog-sticky-bar-dismiss {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.35);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.blog-sticky-bar-dismiss:hover {
    color: rgba(250, 249, 246, 0.7);
}

/* Mobile: hide sticky bar, show inline CTA instead */
@media (max-width: 700px) {
    .blog-sticky-bar {
        display: none;
    }
}

/* ============================================================
   Inline CTA Card — inserted after 3rd paragraph
   ============================================================ */

.blog-inline-cta {
    margin: 40px 0;
    padding: 24px 28px;
    border-left: 3px solid #E69658;
    background: #faf9f6;
}

.blog-inline-cta-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    color: #0a0a0f;
    line-height: 1.6;
}

.blog-inline-cta-body strong {
    font-weight: 600;
}

.blog-inline-cta-link {
    font-weight: 600;
    color: #E69658;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-inline-cta-link:hover {
    color: #D08545;
}