/* ==========================================================================
   Hero slide — per-slide overrides

   The escape hatch. Rules here hook ONE slide, via a class typed into
   Advanced > Additional CSS Class(es) on that slide's block.

   This is deliberately not blocks/hero-slide/hero-slide.css. That file is the
   format every slide shares, and a rule carrying a single slide's name in it
   means the format is wrong rather than the slide being special. Keeping the
   one-offs here keeps that true — and makes it visible when they start piling
   up, which is the signal that something belongs in the block as a real option
   instead.

   Loaded after the block's stylesheet, so a tie on specificity resolves here.

   ⚠ Front end only, same as the Customizer's Additional CSS would be. A rule
   here will not show in the block editor's preview.

   Each rule gets a line saying which slide it is for and why, so a slide that
   gets retired takes its rule with it.
   ========================================================================== */

/* "Cat Rewards 9/26" — pins the button to the bottom of the slide rather than
   letting it sit directly under the copy. Desktop only; the mobile layout
   stacks and has nothing to pin to. */
@media (min-width: 1200px) {
	.cat-rewards-9-26 {
		position: relative;
	}

	.cat-rewards-9-26 .wp-block-button {
		position: absolute;
		bottom: 7px;
	}
}
