#aob-main-cont {
    background-color: black;
    color: white;
    padding: 4rem 2rem;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
#aob-img-cont {
    position: relative;
    width: fit-content;
    justify-self: end;
}
#aob-img-cont img {
    width: 35rem;
    max-width: 80vw;
}
#aob-order-builder-badge {
    padding: 0;
    position: absolute;
    width: 10rem;
    height: 4rem;
    background-color: var(--distro-light-green-2);
    color: black;
    border-radius: 50%;
    right: -4rem;
    bottom: 2rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 1rem;
    font-weight: 500;
    padding-bottom: 0.25rem;
}
#aob-text-cont > p.mobile-txt,
#aob-text-cont > p.desktop-txt {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}
#aob-text-cont > p:last-child {
    width: 35rem;
    max-width: 80vw;
}

@media screen and (max-width: 500px) {
    #aob-main-cont {
        display: grid;
        grid-template-areas:
            "img"
            "text";
        padding: 2rem;
        gap: 3rem 0;
        justify-content: center;
        padding: 0;
        padding-block: 2rem;
    }
    #aob-img-cont {
        text-align: center;
        grid-area: img;
        justify-self: center;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-inline: 2rem;
        gap: 2rem;
    }
    #aob-order-builder-badge {
        right: calc((100vw / 2) - (10rem / 2));
        bottom: -2rem;
    }
    #aob-text-cont {
        grid-area: text;
        width: 100%;
        padding-inline: 2rem;
    }
}
