/* ── Solution Introduction — shared component ──────────────────────────────
   Intentional single-column layout. True content-first design.
   Used by: Power Apps, Power Pages, Power BI, Power Automate, Copilot,
            Microsoft Dataverse
   Structure: section > .wrap > .sol-intro-inner > [eyebrow h2 p* hr h3 p a]
─────────────────────────────────────────────────────────────────────────── */

/* ── Section shell ── */
.sol-intro {
  background: #fff;
  padding: 100px 0;
  border-top: 1px solid var(--divider);
}

/* ── Single centered content column ── */
.sol-intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Eyebrow label ── */
.sol-intro-inner .eyebrow {
  display: block;
  color: var(--royale);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}

/* ── Main heading ── */
.sol-intro-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.18;
  max-width: 680px;
  margin: 0 0 28px;
}

/* ── Body paragraphs ── */
.sol-intro-inner p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 20px;
}

/* ── Thin divider — constrained to content width, not edge-to-edge ── */
.sol-intro-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 12px 0 32px;
}

/* ── Guided Tour / secondary subsection heading ── */
.sol-intro-inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 12px;
}

/* ── Guided Tour description — extra breathing room before button ── */
.sol-intro-inner h3 + p {
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sol-intro { padding: 80px 0; }
}
@media (max-width: 768px) {
  .sol-intro { padding: 64px 0; }
  .sol-intro-inner h2 { font-size: 24px; }
}
@media (max-width: 480px) {
  .sol-intro { padding: 48px 0; }
  .sol-intro-inner h2 { font-size: 24px; }
  .sol-intro-inner p { font-size: 16px; }
}
