/*
 * Scoped overrides for /book-summaries.
 *
 * Why: the FREE AI Growth & Onboarding Meeting buttons on /book-summaries
 * originally carried `.calendar-trigger` so the Apollo Meetings widget
 * could hook into them. We want those buttons to just navigate to
 * /free-demo instead, so `.calendar-trigger` was removed — which also
 * removed the background-color rules since the production CSS selectors
 * require `.calendar-trigger` as part of the combo chain, e.g.
 *   .growth-adivisor-button.no-border.v-small.calendar-trigger.is-black
 *
 * Replicate the same declarations against a new `.is-free-demo` combo
 * marker class so the visual survives without the Apollo hook. These
 * rules live in a page-scoped override file (loaded AFTER the
 * per-page CSS) so they only apply on /book-summaries.
 */

/* Concrete color — production uses
   var(--_simantic---background-color--background-alternate) which
   chains to var(--_primitive---base-color-brand--secondary-color) =
   #0c0835. That variable is only defined in webflow-all-pages.css
   (intentionally not loaded on /book-summaries per CLAUDE.md), so
   we inline the resolved value here. */
.growth-adivisor-button.is-free-demo.is-black {
  background-color: #0c0835;
}
.growth-adivisor-button.is-free-demo.is-black.v-new {
  justify-content: flex-start;
  align-items: center;
  padding-right: 1.3rem;
  font-size: 0.875rem;
}
