/* BLOCK: Hero Animated Text */

.block-hero-animated-text .text-content > :is(h1, h2, .h1, .h2) {
    max-width: 52.1875rem;
}

.block-hero-animated-text .text-content > p {
    max-width: 57.1875rem;
}

.block-hero-animated-text .text-content > :not(:last-child) {
    margin-bottom: 3.75rem;
}

.block-hero-animated-text .cta-buttons:not(:first-child) {
    margin-top: 3.75rem;
}

.block-hero-animated-text .text-content .words {
    display: inline-block;
    padding: 0.625rem;
    border-radius: 0.9375rem;
    color: var(--c-primary);
    background-color: var(--c-bg-light-tint-1);
}

.block-hero-animated-text .text-content .words::before {
    content: '';
    display: inline-block;
}

@media screen and (width <= 620px) {
    .block-hero-animated-text .text-content {
        text-align: center;
    }
    .block-hero-animated-text .text-content > :not(:last-child) {
        margin-bottom: 2.5rem;
    }
    .block-hero-animated-text .text-content > :is(h1, h2, .h1, .h2) {
        margin-inline: 1.25rem;
    }
    .block-hero-animated-text .cta-buttons:not(:first-child) {
        margin-top: 2.5rem;
    }
    .block-hero-animated-text .text-content .words {
        display: block;
        width: -webkit-fit-content;
        width: fit-content;
        margin-inline: auto;
    }
}