<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.full-width-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.full-width-cta__image {
	margin-block-end: 1em;
}

.full-width-cta__ctas {
	list-style: none;
	margin: 1em 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* flex-wrap: wrap; */
	gap: 1em;
	list-style: none;
	&amp; li {
		list-style: none !important;
	}
}

.full-width-cta__content {
	&amp; h2 {
		text-align: center;
	}
}

@media (min-width: 768px) {
	.full-width-cta {
		flex-direction: row;
		align-items: center;
		gap: 3em;
	}
	.full-width-cta__image {
		flex: 0 0 40%;
	}
	.full-width-cta--hexagon {
		align-items: flex-start;
		&amp; .full-width-cta__image {
			flex: 0 0 30%;
		}
	}
	.full-width-cta__ctas {
		align-items: flex-start;
	}
	.full-width-cta__content {
		&amp; h2 {
			text-align: left;
		}
	}
}
</pre></body></html>