/**
 * Whitetail Creek presentation layer for Tributary Blocks.
 *
 * RULES:
 * - Block functionality and structure live in the plugin. This file only
 *   wires the plugin's CSS custom properties to the theme's design tokens
 *   and may register visual refinements (block styles) per project.
 * - Keep it token-based: change theme.json, not this file, to re-skin.
 */

@layer components {
	.trb-hero {
		--trb-hero-button-background: var(--wp--preset--color--primary);
		--trb-hero-button-color: var(--wp--preset--color--base);
	}

	.trb-cta {
		--trb-cta-button-background: var(--wp--preset--color--primary);
		--trb-cta-button-color: var(--wp--preset--color--base);
	}

	.trb-content-split {
		--trb-content-split-button-background: var(--wp--preset--color--primary);
		--trb-content-split-button-color: var(--wp--preset--color--base);
	}

	.trb-card-grid {
		--trb-card-grid-card-border: 1px solid var(--wp--preset--color--border);
	}

	.trb-stats {
		--trb-stats-item-border: 1px solid var(--wp--preset--color--border);
	}

	.trb-faq {
		--trb-faq-item-border: 1px solid var(--wp--preset--color--border);
	}
}
