/* =============================================
   Blog CTA — shared styles for all blog articles
   Inline CTA box + Sticky bottom banner
   ============================================= */

/* ===== INLINE CTA BOX ===== */
.blog-inline-cta {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.04) 100%);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.blog-inline-cta__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.blog-inline-cta__content {
  flex: 1;
}

.blog-inline-cta__label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00D4AA;
  margin-bottom: 0.4rem;
}

.blog-inline-cta__text {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.blog-inline-cta__text strong {
  color: white;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  background: #00D4AA;
  color: white;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.blog-cta-btn:hover {
  background: #00D4AA;
  color: white;
}

@media (max-width: 600px) {
  .blog-inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .blog-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== STICKY BOTTOM BANNER ===== */
.blog-sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #00D4AA 0%, #00a88a 100%);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.blog-sticky-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.blog-sticky-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-sticky-banner__text {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
  flex: 1;
  padding-right: 1rem;
}

.blog-sticky-banner__text strong {
  font-weight: 700;
}

.blog-sticky-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: white;
  color: #00D4AA;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.blog-sticky-banner__cta:hover {
  background: #f0fdf4;
}

.blog-sticky-banner__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
  padding: 0;
}

.blog-sticky-banner__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 600px) {
  .blog-sticky-banner__inner {
    padding: 0.75rem 1rem;
  }
  .blog-sticky-banner__text {
    font-size: 0.85rem;
  }
  .blog-sticky-banner__cta {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
}