.block-card-text {
    position: relative;
    padding: calc(var(--spacing) * 8);
    border-radius: var(--radius-semilarge);

    * {
        position: relative;
        z-index: 2;
    }

    /*& > div {
        height: 100%;

        div[data-block="text"] {
            display: flex;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
        }
    }*/

    &::before {
        z-index: 1;
        content: "";
        position: absolute;
        inset: 0;
        /*background-color: var(--background);*/
        border-radius: var(--radius-semilarge);
    }

    &:nth-child(1)::before {
        background-color: transparent;
    }

    &:nth-child(3n+2) {
        button {
            --accent-color: var(--color-primary);
            --background-color: var(--color-white);

            color: var(--color-primary-dark) !important;
            border: var(--color-primary-dark) !important;
        }

        p, h2, h3 {
            color: white !important;
        }

        &::before {
            background-color: #035D72;
        }

        ul>li::before {
             background: white !important;
         }
    }

    /*&:nth-child(4n+3)::before {
        background-color: #55CEB7;
    }*/

    &:nth-child(3n)::before {
        background-color: #CAF0E9 ;
    }

    &:nth-child(3n+1)::before {
        background-color: #EAF4F4;
    }

    ul>li::before {
        background: var(--color-black) !important;
    }
}
