/* GRD Blocks — site-wide overrides (front end + editor).
   Small, scoped theme tweaks and block-style CSS. Loaded everywhere; keep rules tightly scoped. */

/* ---- CTA: "Light" theme ----
   The theme's CTA is a solid astronaut-blue band with white text. This flips it to a light band
   with the site's teal heading + dark body text. The green button (.button-theme) is unchanged.
   Applies via the "Light" block style (is-style-light) OR a manual cta--light class. */
.cta.is-style-light,
.cta--light {
  background-color: rgb(var(--desert-storm, 245 245 244)); /* light band; swap for #fff or a mint tint if preferred */
}
.cta.is-style-light .cta__headline,
.cta--light .cta__headline {
  color: rgb(var(--metallic-seaweed, 8 115 153)); /* brand teal, matches the site's other light-section headings */
}
.cta.is-style-light .cta__copy,
.cta--light .cta__copy {
  color: rgb(var(--charcoal, 2 17 33)); /* dark body text */
}
