/* ============================================
   Content CTA - Inline & Footer
   Warm, pet-friendly editorial CTAs
   ============================================ */

/* --- Inline CTA (after first H2) --- */
.wlpc-inline-cta {
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf6ee 0%, #fef9f3 50%, #fdf2e9 100%);
  border: 1px solid rgba(230, 126, 34, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wlpc-inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.12);
  border-color: rgba(230, 126, 34, 0.3);
}

.wlpc-inline-cta-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
}

.wlpc-inline-cta-link:hover {
  color: inherit;
}

.wlpc-inline-cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 3px 8px rgba(230, 126, 34, 0.3);
}

.wlpc-inline-cta-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wlpc-inline-cta-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: 0.01em;
}

.wlpc-inline-cta-desc {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}

.wlpc-inline-cta-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: #e67e22;
  color: #fff;
  border-radius: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  vertical-align: middle;
}

.wlpc-inline-cta-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  color: #e67e22;
  transition: background 0.2s, transform 0.2s;
}

.wlpc-inline-cta:hover .wlpc-inline-cta-arrow {
  background: #e67e22;
  color: #fff;
  transform: translateX(2px);
}

/* --- Footer CTA (after article body) --- */
.wlpc-footer-cta {
  position: relative;
  margin: 40px 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2533 0%, #2c3e50 40%, #34495e 100%);
  color: #fff;
}

.wlpc-footer-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.wlpc-footer-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative paw prints */
.wlpc-footer-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wlpc-footer-cta-paw {
  position: absolute;
  color: #fff;
}

.wlpc-footer-cta-paw--1 {
  top: 12%;
  right: 8%;
  transform: rotate(-20deg);
}

.wlpc-footer-cta-paw--2 {
  bottom: 15%;
  left: 5%;
  transform: rotate(15deg);
}

.wlpc-footer-cta-paw--3 {
  top: 50%;
  right: 30%;
  transform: rotate(-35deg);
}

.wlpc-footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
}

.wlpc-footer-cta-content {
  flex: 1;
  min-width: 0;
}

.wlpc-footer-cta-label {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(230, 126, 34, 0.25);
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f0a050;
  margin-bottom: 12px;
}

.wlpc-footer-cta-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.wlpc-footer-cta-desc {
  font-size: 0.8125rem;
  opacity: 0.7;
  line-height: 1.7;
  margin: 0;
}

.wlpc-footer-cta-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wlpc-footer-cta-count {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.6;
  white-space: nowrap;
}

.wlpc-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.35);
}

.wlpc-footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45);
  color: #fff;
}

.wlpc-footer-cta-btn svg {
  transition: transform 0.2s;
}

.wlpc-footer-cta-btn:hover svg {
  transform: translateX(3px);
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .wlpc-inline-cta-link {
    padding: 14px 16px;
    gap: 12px;
  }

  .wlpc-inline-cta-icon {
    width: 38px;
    height: 38px;
  }

  .wlpc-inline-cta-icon svg {
    width: 17px;
    height: 17px;
  }

  .wlpc-inline-cta-title {
    font-size: 0.8125rem;
  }

  .wlpc-inline-cta-desc {
    font-size: 0.6875rem;
  }

  .wlpc-inline-cta-arrow {
    width: 30px;
    height: 30px;
  }

  .wlpc-footer-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .wlpc-footer-cta-title {
    font-size: 1.125rem;
  }

  .wlpc-footer-cta-desc {
    font-size: 0.75rem;
  }

  .wlpc-footer-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}
