/* Blog: contextual PDF CTA — no hard gate; full article stays crawlable */

.blog-pdf-teaser {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem 1.25rem 4.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}
.blog-pdf-teaser__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}
.blog-pdf-teaser__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}
.blog-pdf-teaser__body ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}
.blog-pdf-teaser__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.92) 55%,
    #ffffff 100%
  );
}
.blog-pdf-teaser__cta-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}
.blog-pdf-teaser__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: #059669;
  border: 2px solid #047857;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}
.blog-pdf-teaser__cta:hover {
  background: #047857;
}
.blog-pdf-teaser__cta-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #64748b;
}

.blog-checklist-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.blog-checklist-sticky.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.blog-checklist-sticky__inner {
  max-width: 42rem;
  margin: 0 auto 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.45);
}
.blog-checklist-sticky__text {
  margin: 0;
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.35;
  flex: 1 1 12rem;
}
.blog-checklist-sticky__btn {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: #059669;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none !important;
  white-space: nowrap;
}
.blog-checklist-sticky__btn:hover {
  background: #047857;
}

@media (min-width: 768px) {
  .blog-checklist-sticky__inner {
    margin-bottom: 1.25rem;
  }
}
