/**
 * Stack a Row's columns on mobile instead of shrinking them side by side.
 * Opt-in: apply the `siku-col-on-mobile` class to the Row.
 */
@media (max-width: 781px) {
    .siku-col-on-mobile {
        flex-direction: column;
        align-items: start;
    }
}
