@import url('./social-media-growth.css');

/* ==========================================================
   Campaign Landing Page Specific Styles
   ========================================================== */

/* Section 3: What Campaign Landing Pages Need - CTA Card (8th card) */
.smg-requires__card--cta {
  background: var(--color-orange-65, #FF934F);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
  color: #FFFFFF;
}

.smg-requires__card--cta .smg-requires__cta-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.smg-requires__card--cta .smg-requires__cta-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  max-width: 440px;
}

.smg-requires__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: #FF934F;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.smg-requires__cta-btn:hover {
  background-color: #FAF8F2;
  color: #df6c30;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.smg-requires__cta-btn svg {
  transition: transform 0.2s ease;
}

.smg-requires__cta-btn:hover svg {
  transform: translateX(3px);
}