.cta-normal-block {
    position: relative;
    isolation: isolate;
}

.cta-normal-block::before {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 100vw;
	background-color: var(--primary-200);
}

.cta-normal-block:last-child {
    margin-bottom: 0 !important;
}

.cta-normal-block__content {
    text-align: center;
}

.cta-normal-block__description * {
    font-size: inherit;
    line-height: inherit;
}

.cta-normal-block__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .cta-normal-block__actions {
        margin-top: 2rem;
    }
}
