/* BLOCK: Text Content */

.block-text-content {
    position: relative;
    isolation: isolate;
}

.block-text-content .plane-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-100%, 100%);
    z-index: -1;
    pointer-events: none;
    user-select: none;
    /* transition: all 2000ms linear; */
}

.block-text-content .text-content {
    text-align: center;
}

.block-text-content .text-content:not(:last-child) {
    margin-bottom: 3.75rem;
}

.block-text-content .text-content > * {
    margin: 0;
}

.block-text-content .text-content > :not(:last-child) {
    margin-bottom: 1em;
}

.block-text-content .text-content .cursive {
    margin-bottom: 0.18em;
}

.block-text-content .text-content :where(h1, h2, h3, .h1, .h2, .h3):not(.cursive):not(:last-child) {
    margin-bottom: 5rem;
}

.block-text-content .text-content p {
    max-width: 50rem;
    margin-inline: auto;
}

.block-text-content .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

@media  screen and (width <= 620px) {
    .block-text-content .text-content .cursive {
        margin: 0 auto 0.4em;
    }

    .block-text-content .text-content p:not(:first-child) {
        margin-top: 2.5rem;
    }

    .block-text-content .text-content:not(:last-child) {
        margin-bottom: 2.5rem;
    }

    .block-text-content .plane-shadow {
        display: none;
    }
}