/* ==============================
   CTA BANNER
   (append to style.css)
   ============================== */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-accent-light) 0%, var(--clr-bg-alt) 100%);
  padding: 80px 24px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    width: 100%;
    justify-content: center;
  }
  .cta-desc { max-width: 400px; margin: 0 auto; }
}
