Sorry about that, I had changed the class on the element and did not realize that there was CSS already in place for utilizing flexbox layout for it.
You could try:
@media (max-width: 749px) {
.custom__item.small--one-half {
flex: 1 0 100%;
max-width: none;
}
}
That seemed to do the trick for me.