/* ============================================================
   Speech Therapy Service Page — additions layered on top of
   aba-service-page.css (the shared service-page component library).
   The page wrapper carries BOTH .cst-aba-page (all base styles + tokens)
   and .cst-speech-page (these speech-only extras). Tokens like --gold
   inherit from the .cst-aba-page block, so they resolve here too.
   ============================================================ */

/* Hero — inline phone link + 4 trust rectangles under the CTAs (over the video) */
.cst-speech-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 18px;
}
.cst-speech-page .hero .phone-inline {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cst-speech-page .hero .phone-inline:hover { color: var(--gold); }

.cst-speech-page .hero-trust-rects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.cst-speech-page .trust-rect {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 12px;
  padding: 11px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
}
.cst-speech-page .trust-rect .ck { color: var(--gold); font-weight: 800; }

@media (max-width: 700px) {
  .cst-speech-page .trust-rect { font-size: 13.5px; padding: 10px 13px; }
}

/* Speech only: equal-width columns in the "What Is / How it works" split */
@media (min-width: 1000px) {
  .cst-speech-page .aba-split { grid-template-columns: 1.1fr 1.1fr; }
}

/* Speech only: larger sign icons, no pale background/padding
   (these illustrations carry their own artwork). */
.cst-speech-page .sym-card .icon-wrap {
  width: 90px;
  height: 90px;
  background: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue);
}
