/**
 * Utility classes for the theme
 *
 * WordPress features it's own utility classes, but we add some more here.
 */

 @media screen and (max-width: 640px) {
    .stack-on-mobile {
        flex-direction: column;
    }
}

@media screen and (max-width: 781px) {
    .stack-reverse-on-mobile {
        flex-direction: column-reverse;
    }
}

.links-has-no-underline a {
    text-decoration: none;
}