/* ==========================================================================
   Vedic People v3 — vac.css
   Vedic Action Cards (block + CSS owned by the Grantha plugin — not
   touched). Colors only, per the design spec: the rightmost button in
   each card renders as brand green (was solid gold); the other one or two
   buttons render as an ink outline (was black outline w/ gold hover).
   Structure, layout, font-size, padding, border-radius: all untouched —
   only background/border-color/color are overridden here.

   Loaded conditionally (only on pages that actually have the block — see
   functions.php's has_block() check) and enqueued after Grantha's own
   vedic-action-cards.css, but these selectors are also intentionally
   written with slightly higher specificity than Grantha's plain
   single-class rules, so the override doesn't depend on exact enqueue
   ordering.
   ========================================================================== */

.vedic-action-cards .vedic-ac-btn.vedic-ac-btn--primary{
	background:var(--green) !important;
	border-color:var(--green) !important;
	color:var(--role-primary-color) !important;
}
.vedic-action-cards .vedic-ac-btn.vedic-ac-btn--primary:hover{
	background:var(--green-deep) !important;
	border-color:var(--green-deep) !important;
	color:var(--role-primary-color) !important;
}

.vedic-action-cards .vedic-ac-btn.vedic-ac-btn--outline{
	background:transparent !important;
	border-color:var(--ink) !important;
	color:var(--ink) !important;
}
.vedic-action-cards .vedic-ac-btn.vedic-ac-btn--outline:hover{
	background:var(--green) !important;
	border-color:var(--green) !important;
	color:var(--role-primary-color) !important;
}
