/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
.wp-block-image.aligncenter {
	display: flex;
	justify-content: center;
}

.wp-block-image.aligncenter img {
	border-radius: 50%;
	object-fit: cover;
	width: 150px;
	height: 150px;
	display: block;
	margin: 0 auto;
}

/* ---------- SCADS uniform pill buttons ---------- */
.scads-pill {
	width: 300px;
/* adjust if you want 260, 280, etc. */
	height: 60px;
	display: inline-flex;
	align-items: center;
/* vertical‑center the label */
	justify-content: center;
/* horizontal‑center the label */
}