/* ==========================================================================
   Shared process-guide styles
   Loaded by the /ai-*-automation/ how-to guide pages. Uses global design
   tokens from styles.css. If you edit this, bump ?v= on every guide page
   that links it.
   ========================================================================== */

.section-heading .guide-lede {
  max-width: 66ch;
  margin: 14px auto 0;
  color: var(--muted);
}

/* ----- controls (3-up) ----- */
.guide-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.guide-controls article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.guide-controls h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--ink);
}
.guide-controls p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ----- proof / results callout (links to real case studies) ----- */
.guide-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: #fff;
  border-radius: calc(var(--radius) * 1.5);
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.guide-callout-text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 62ch;
}
.guide-callout .button {
  flex: none;
}

/* ----- responsive ----- */
@media (max-width: 860px) {
  .guide-controls {
    grid-template-columns: 1fr;
  }
}
