/**
 * PPB Core — Text block.
 * Block: ppb-text-block
 */

.ppb-text-block {
	width: 100%;
	box-sizing: border-box;
	padding-block: var(--ppb-space-main-gap);
}

.ppb-text-block__inner {
	max-width: 72rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ppb-text-block__body {
	/* Typography, spacing, lists: `.ppb-u-prose` in utilities.css */
	width: 100%;
}

/* Match `.ppb-u-prose` width so the button sits in the same column as the body copy. */
.ppb-text-block__cta {
	display: flex;
	width: 100%;
	max-width: var(--ppb-measure-prose, 65ch);
	margin-inline: auto;
	margin-block-start: clamp(1.5rem, 3vw, 2.25rem);
	justify-content: center;
	box-sizing: border-box;
}

.ppb-text-block__cta--align-left {
	justify-content: flex-start;
}
