@use "../base/mixins";


section.flexi-block.block--content-cta-02 {
    .content {
        max-width: 1200px; // this may need to be set to container width
        h2 {
            margin-bottom: 32px;
        }
    }

    .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: var(--site-gutter);
    }

    @include mixins.min-width( l ) {
        .content {
            text-align: start;
            display: flex;
            align-items: center;
            gap: clamp(32px, 8vw, 128px);

            h2 {
                width: 66.66%;
                margin-bottom: 0;
            }

            .buttons {
                width: 33.33%;
                justify-content: flex-end;

                .button {
                    height: fit-content;
                }
            }
        }
    }
}
