article.at-textImage {
    position: relative;
    margin-top: 10rem;
    margin-bottom: 0;
    background: var(--primaryColor500);
}

article.at-textImage:before {
    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-textImage__inner {
    position: relative;
    padding: min(10vw, calc(2 * var(--innerPaddingY))) 0 calc(2 * var(--innerPaddingY));
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 2rem;
}

.at-textImage__content {
    color: var(--baseLight100);
}

.at-textImage__link {
    color: var(--baseLight100);
}

.at-textImage__imageWrapper {
    flex: 0 1 38%;
    margin-top: -6rem;
}

.at-textImage__image {
    border-radius: var(--borderRadius);
}

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

    .at-textImage__imageWrapper {
        margin-top: -10rem;
    }

    .at-textImage__content {
        flex: 1;
    }

    .at-textImage__link {
        float: right;
    }
}
