.at-textArticle {
    position: relative;
    margin-bottom: 0;
    background: var(--secondaryColor100);
}

.at-textArticle:before,
.at-textArticle:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: transparent url(round_shape.svg) no-repeat center top;
    background-size: 100%;
}

.at-textArticle:after {
    background-image: url(round_shape_bottom.svg);
    background-position: center bottom;
}

.at-textArticle__inner {
    position: relative;
    padding: min(10vw, calc(3 * var(--innerPaddingY))) 0 calc(2 * var(--innerPaddingY));
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.at-textArticle__article {
    flex: 1;
    padding: var(--innerPaddingX);
    background: var(--baseLight100);
    box-shadow: var(--boxShadow);
    border-radius: var(--borderRadius);
}

@media (min-width: 768px) {
    .at-textArticle__inner {
        flex-direction: row;
        gap: 4rem;
    }

    .at-textArticle__content {
        flex: 1;
    }
}
