/* CTA v18 — toolbar row: copy + actions */

.cta-v18 .cta-v18__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 1.5rem) clamp(1.15rem, 3vw, 1.75rem);
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--cta-accent) 24%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--cta-accent) 10%, var(--cta-bg)), var(--cta-bg));
}

.cta-v18 .cta-v18__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.cta-v18 .cta-v18__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-v18 .cta-v18__sub {
  margin: 0;
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  line-height: 1.45;
  opacity: 0.85;
}

.cta-v18 .cta-v18__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cta-v18 .cta-v18__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-v18 .cta-v18__actions {
    justify-content: flex-start;
  }
}
