/*
 * blocks/cta-dark-simple.css — réutilise .section/.section--dark/.btn de
 * guest.css, ajoute juste un motif SVG discret sur le fond uni pour casser
 * la monotonie (règle standing : jamais de fond vert/noir plat sans motif).
 */
.cta-dark-simple {
	position: relative;
	overflow: hidden;
}
.cta-dark-simple::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
	pointer-events: none;
}
