/**
 * Locked Global CTA component styles.
 * Page Builder / section design tokens must NOT override these.
 */

.gcta {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.gcta__banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.15rem, 3vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.gcta--soft .gcta__banner {
  background: #fff;
  border-color: #e2e8f0;
}

.gcta--dark .gcta__banner {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}

.gcta__copy {
  flex: 1 1 280px;
  min-width: 0;
  display: grid;
  gap: 0.5rem;
}

.gcta__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  color: inherit;
}

.gcta__helper {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #64748b;
}

.gcta--dark .gcta__helper {
  color: rgba(255, 255, 255, 0.82);
}

.gcta__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gcta__btn {
  min-height: 48px;
  border-radius: 10px;
  font-weight: 800;
  padding: 0.55rem 1.15rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gcta__btn--primary {
  background: #f97316 !important;
  color: #fff !important;
  border: 1px solid #f97316 !important;
}

.gcta__btn--primary:hover {
  background: #ea580c !important;
  border-color: #ea580c !important;
  transform: translateY(-1px);
}

.gcta__btn--secondary:hover {
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .gcta__banner {
    flex-direction: column;
    align-items: stretch;
  }

  .gcta__actions {
    width: 100%;
  }

  .gcta__actions .gcta__btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
}
