body .text-wrapper {
    max-width: 1140px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
    /* Initial state for scroll animation */
    opacity: 0;
    translate: 0 30px;
    transition: opacity 0.6s ease, translate 0.6s ease;
}

/* Animated state when text block enters viewport */
body .text-wrapper.animate-in {
    opacity: 1;
    translate: 0 0;
}

/* Disable animations when wrapped in block-wrapper */
.block-wrapper .text-wrapper {
    opacity: 1 !important;
    translate: 0 0 !important;
    transition: none !important;
}