/* Lightweight contextual API CTA used on demo pages.
   Sober, reuses palette of core.css; mobile-first. */
.fs-api-cta {
  margin: 2rem auto;
  max-width: 880px;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border-color, #e2e8f0);
  border-left: 4px solid #1e40af;
  border-radius: 10px;
  background: var(--card-bg, #ffffff);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="dark"] .fs-api-cta {
  background: #111827;
  border-color: #1f2937;
  border-left-color: #60a5fa;
}
.fs-api-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
[data-theme="dark"] .fs-api-cta__eyebrow { color: #93c5fd; }
.fs-api-cta__title {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-color, #0f172a);
}
.fs-api-cta__text {
  margin: 0 0 0.85rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted-color, #475569);
}
[data-theme="dark"] .fs-api-cta__text { color: #cbd5e1; }
.fs-api-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}
.fs-api-cta__btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  background: #1e40af;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.fs-api-cta__btn:hover,
.fs-api-cta__btn:focus { background: #1d4ed8; }
.fs-api-cta__link {
  font-size: 0.88rem;
  color: #1e40af;
  text-decoration: underline;
  text-underline-offset: 2px;
}
[data-theme="dark"] .fs-api-cta__link { color: #93c5fd; }
@media (max-width: 480px) {
  .fs-api-cta { margin: 1.5rem 0.75rem; padding: 1rem 1.1rem; }
  .fs-api-cta__title { font-size: 1rem; }
}
